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
Click Here For More example in c introduction chapter
http://www.mastercaptainit.com/p/c-programming-tutorial.html
main( )
function. Inside main( ), there is a printf( )
function which prints the content inside the quotation mark which is "C Programming" in this case.Click Here For More example in c introduction chapter
Go Back on Home Chapter By Clicking below Button :)
If above button is not working then copy the below link and paste in your address bar.http://www.mastercaptainit.com/p/c-programming-tutorial.html
No comments:
Post a Comment