First Program
Last updated
Last updated
#include <stdio.h>
int main(void)
{
printf("To C, or not to C: that is the question. \n");
return 0;
}#include <stdio.h>
int main(int argc, char *argv[])
{
printf("To C, or not to C: that is the question. \n");
return 0;
}gcc hello.c -o hello./hello./hello arg1 arg2 ag3// Single-line comment
/* Multi-line
comment */