First Programming with C
Programming Language C |
Every Programm in C language contain at list one library function and main function. First, we include the library function then we declare the main function. Another user defined function may be stay. But all the user defined function is connected to the main function.
Naw we write a simple C programm
#linclude <stdio.h>
int main()
{
printf("Welcome to C language world.\n");
printf("Best wishes from http://r-softit.blogspot.com");
return 0;
}
Output:
Welcome to C language world.
Best wishes from http://r-softit.blogspot.com
No comments: