June 23, 2017
Chandrabhushan kumar
c programming
Related Posts:
Write a C program to input two number and print the sum using third variable : C Programming Write a C program to input two number and print the sum using third variable. void main() { int first,second,sum; // Variable declaration printf("Enter Two No."); printf("%d%d",&first,&second);… Read More
Write a C program to input two no and print the sum without using third variable : C Programming 3. Write a C program to input two no and print the sum without using third variable void main() { int a,b; // variable declaration printf("Enter two nos."); // message t… Read More
Write a C program to input principal, rate and time(in year) and find simple interest and final amount : C Programming Write a C program to input principal, rate and time(in year) and find simple interest and final amount. void main() { float p,r,t,si,fa; printf("Enter Principal amount, rate and time."); scanf("%f%f%f",&p,&r,&t… Read More
Switch Statement in C : C Programming C Programming Switch Statement in C In switch statement we test the sin… Read More
Program to input two nos and perform simple operation : C Programming Program to input two nos and perform simple operation. void main() { int a,b; printf("Enter two nos."); scanf("%d%d", &a,&b); printf("\nAddition=%d",a+b); printf("\nSubstraction=%d",a-b); printf("\nMultiplication=%d… Read More