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

2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);

9 Answers   HCL, Tech Mahindra,


Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?

1 Answers   Microsoft,


Write a c program to build a heap method using Pointer to function and pointer to structure ?

0 Answers   Wipro,


What is extern c used for?

0 Answers  


Differentiate between Macro and ordinary definition.

0 Answers   Motorola,






Which node is more powerful and can handle local information processing or graphics processing?

0 Answers  


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

0 Answers  


Write the syntax and purpose of a switch statement in C.

0 Answers   Adobe,


What is build process in c?

0 Answers  


which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma

16 Answers   Accenture, Infosys, TCS, Wipro,


What is a program?

0 Answers  


who is the father of C Language?

20 Answers   CTS, UST,


Categories