Source Code
/* C Program to print a sentence. */
#include <stdio.h>
int main()
{
printf("C Programming"); /* printf() prints the content inside quotation */
return 0;
}
Output
C Programming
Explanation
Every C program starts executing code from main( )
function. Inside main( ), there is a printf( )
function which prints the content inside the quotation mark which is "C Programming" in this case. Learn more about output in C programming language.
Post a Comment