First Program in C Yo 08:02 After installing the software of C language,we will start with our first program which will show how to print a string on Display Screen or Console. Coding: /* Hello World program */ #include<stdio.h> #include<conio.h> void main() { printf("Hello World"); //printf is used to print the string on console getch(); } Output: Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment