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
++i vs i++
factorial using function in c
Pregunta de función cantidad de digitos
My first reevers C 2darryp
B_141212_RolloPunteros
prime numbers using functions
C_141113_euclides
PRACTICE 1
C_141106_Potencia
union behaviour when const obj created