c program to find sqaure of any number Get link Facebook X Pinterest Email Other Apps - October 19, 2017 floating is a data type. By the use of float, if the user inputs decimal number, then the compiler will give the exact output. Read more
c program to find multiplication of same number Get link Facebook X Pinterest Email Other Apps - October 11, 2017 #include<stdio.h> #include<conio.h> void main() { int n,m; clrscr(); printf("enter any number="); scanf("%d",&n); m=n*n; printf("Product="); printf("%d",m); getch(); } Read more
c program to find product of two numbers Get link Facebook X Pinterest Email Other Apps - October 11, 2017 #include<stdio.h> #include<conio.h> void main() { int c,a,b; clrscr(); printf("enter 1st number="); scanf("%d",&a); printf("enter 2nd number="); scanf("%d",&b); c=a*b; printf("Product="); printf("%d",c); getch(); } Read more
c program for subtracting 2 numbers. Get link Facebook X Pinterest Email Other Apps - October 08, 2017 Input 2 numbers & get there subtraction. Read more
c program for adding two numbers Get link Facebook X Pinterest Email Other Apps - October 07, 2017 input two numbers and get there addition. Read more
c program to for adding two variables Get link Facebook X Pinterest Email Other Apps - October 07, 2017 Add two numbers without inputting. Read more
C program to print "Hello" Get link Facebook X Pinterest Email Other Apps - October 06, 2017 Read more