Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
CharacterInput
//gcc 5.4.0 /* Program to get character and print it */ #include <stdio.h> int main(void) //main function with no arguments { int c; //variable declaration c = getchar(); //input character while (c != EOF) //loop for checking terminating character { putchar(c); //print the character c = getchar();//get another character input } return 0; //return }
run
|
edit
|
history
|
help
0
Project v0.12
C_141204_ContadorPalabras
Binary to Integer (C)
B_141212_RolloPunteros
Iterated sums
Maximum
bitwise operations
1
hello
-Wall