c pragram to print hello world Get link Facebook X Pinterest Email Other Apps September 11, 2016 Programm for print "hello world" :- #include<stdio.h> #include<conio.h> void main() { clrscr(); printf("hello world"); getch(); } Get link Facebook X Pinterest Email Other Apps Comments
c program for addition September 11, 2016 Programm for addition :- #include<stdio.h> #include<conio.h> void main() { clrscr(); int a,b,c; printf("enter the value of a="); scanf("%d",&a); printf("enter the value of b="); scanf("%d",&b); c=a+b; printf("sum is: %d"); getch(); } Read more
Comments
Post a Comment