gaurav_indian
International Coach
- Joined
- Aug 6, 2005
- Online Cricket Games Owned
Here are some more programs for u to try.
Try to give all the answers without running the program!
First Program
#include<stdio.h>
main()
{
int a,b,c;
printf("Enter the three numbers :- ");
scanf("%d %*d %d",&a,&b,&c);
printf("%d %d %d",a,b,c);
}
Assume the input values as 55,67,90 then what will be the output of this program?
Second Program
#include<stdio.h>
main()
{
printf("C\bR\bI\bC\bK\bE\bT\b CRICKET");
}
What will be the output?
Third Program
#include<stdio.h>
main()
{
float a;
int b=5,c=2;
a=b/c;
printf("a=%f\n",a);
}
What will be the output?
Try to give all the answers without running the program!