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

A C E G H +B D F A I ------------ E F G H D

1 Answers   Infosys,


Explain what are the different file extensions involved when programming in c?

0 Answers  


HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE

3 Answers   Wipro,


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

0 Answers  


int *a[5] refers to

12 Answers   TCS,






How do I get a null pointer in my programs?

0 Answers  


What is difference between stdio h and conio h?

0 Answers  


What is a built-in function in C?

1 Answers  


Explain what does the format %10.2 mean when included in a printf statement?

0 Answers  


why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?

1 Answers  


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

0 Answers   IBM,


a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor

0 Answers  


Categories