:) coming sooon
Hay friends .. AREA OF LANGUAGE IS TOO WIDE BUT NOW APPROXIMATE THEORY AND "C PROGRAMING CODES" ARE AVAILABLE . GOPAL KRISHNA "CHAUHAN"
Thursday, 16 August 2012
c program : to add two numbers
#include<stdio.h>
main()
{
int a, b, c;
printf("Enter two numbers to add\n");
scanf("%d%d",&a,&b);
c = a + b;
printf("Sum of entered numbers = %d\n",c);
return 0;
}
Friday, 10 August 2012
C PROGRAM : Print integer
#include <stdio.h>
int main()
{
int a;
printf("Enter an integer\n");
scanf("%d", &a);
printf("Integer that you have entered is %d\n", a);
return 0;
}
Sunday, 1 July 2012
C program : Print the name
/* Hello World program */
#include<stdio.h>
main()
{
printf("write Hello World which you want to print");
}
Subscribe to:
Posts (Atom)