What is the output of the program
#include<stdio.h>
#include<conio.h>
void main()
{0
int i,j=20;
clrscr();
for(i=1;i<3;i++)
{
printf("%d,",i);
continue;
printf("%d",j);
break;
}
getch();
}

Answers were Sorted based on User's Feedback



What is the output of the program #include<stdio.h> #include<conio.h> void main() {0..

Answer / ali

1,2,

Is This Answer Correct ?    11 Yes 0 No

What is the output of the program #include<stdio.h> #include<conio.h> void main() {0..

Answer / salman vamiq

1 20

Is This Answer Correct ?    5 Yes 1 No

What is the output of the program #include<stdio.h> #include<conio.h> void main() {0..

Answer / p.yamini

1,2 20

Is This Answer Correct ?    9 Yes 6 No

What is the output of the program #include<stdio.h> #include<conio.h> void main() {0..

Answer / kathiravan.l

1,20

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

write a program of bubble sort using pointer?

3 Answers   TCS,


how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.

3 Answers  


What are register variables in c?

0 Answers  


Subtract Two Number Without Using Subtraction Operator

0 Answers  


User define function contain thier own address or not.

2 Answers  






What is the use of bit field?

0 Answers  


explain what is a newline escape sequence?

0 Answers  


A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM

0 Answers   HCL,


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

0 Answers  


What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }

8 Answers   ADITI, Adobe,


What are the application of c?

0 Answers  


Categories