This Blog Post Only Education Purpose For All Education Related Blogs and Articles Post Here.Download Free Software and Study Materials Mores..
Must Read Alos:
C++ Precision function Program with Output
How To Design ASp.Net E-commerce Website | Design View Asp.net Website
Must Read Alos:
C++ Precision function Program with Output
How To Design ASp.Net E-commerce Website | Design View Asp.net Website
Hello Friends Thank you for support and reading my article and blogs.Today i have also interesting blog for you in C language.In this blog i am discuss how to print hello world program in C language using Dev C application.
Hello World Program In C Language | Using Dev C
In this blog i am explaining how to write hello world program in C language using Dev C application & also explain more details about all major and small things hope you enjoyed this code
Belo Source Code
#include<stdio.h>
// this is comment line single comment line
// # is pre processor directive
// include is join the pre processor directrive
// std is function library
// i o i- input, o- output
//.h is the header file in c library
main() // is function using start of program
{
printf("Hello World\t\t");
printf ("Welcome to C languges Class");
//print is output of the program
// f as function
// hello world ( string)
//string "hello world"
}