It looks like you're new here. If you want to get involved, click one of these buttons!
#include <stdio.h>
int main()
{
char name[20];
printf(\"What is your name, stranger?: \");
scanf(\"%s\",name);
printf(\"Oh, thats a cool name %s\n\",name);
return(0);
}
scanf(\"%s\",scan);
gets(name);
//Comment here
printf(\"Hello\"); //Print's hello
/*
Comments
Go
Here
*/
printf(\"hello\");
#include <stdio>
//Start the program
int main()
{
char lolz[20];
puts(\"Hello, world!\");
/* Uncomment this for input
scanf(\"%s\",lolz); /* Ask for input */
*/
printf(\"Goodbye\");
return(0);
}