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

What is static and auto variables in c?

0 Answers  


What is .obj file in c?

0 Answers  


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

0 Answers  


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers  


What is register variable in c language?

0 Answers  






Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

0 Answers  


What is property type c?

0 Answers  


how to create duplicate link list using C???

0 Answers  


main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }

1 Answers  


can i know the source code for reversing a linked list with out using a temporary variable?

6 Answers   Honeywell,


Is fortran still used today?

0 Answers  


3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).

0 Answers   TCS,


Categories