This repository has been archived on 2020-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stupid-coding-files/getchar.c
2020-11-30 11:56:55 +02:00

7 lines
63 B
C

#include <stdio.h>
main (){
int c;
c='\0';
printf("%d\n",c);
}