void main()
{
for(int i=0;i<5;i++);
printf("%d",i);
}
What is the output?..
Answer
Is This Answer Correct ? | 0 Yes | 1 No |
What is the out put of this programme?
int a,b,c,d;
printf("Enter Number!\n");
scanf("%d",&a);
while(a=!0)
{
printf("Enter numbers/n");
scanf("%d%d%d",&b,&c,&d);
a=a*b*c*d;
}
printf("thanks!");
getche();
Entering numbers are
a=1,b=2,c=3,d=4
b=3,c=4,d=-5
b=3,c=4,d=0
Answer
Is This Answer Correct ? | 1 Yes | 0 No |