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();
}

Answer Posted / salman vamiq

1 20

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to generate the Fibinocci Series

658


what is different between auto and local static? why should we use local static?

644


Explain how many levels deep can include files be nested?

625


write an algorithm to display a square matrix.

2221


Explain about the constants which help in debugging?

846






program for reversing a selected line word by word when multiple lines are given without using strrev

1945


What are the difference between a free-standing and a hosted environment?

743


about c language

1600


How would you rename a function in C?

616


What is the difference between a string and an array?

705


What are header files and explain what are its uses in c programming?

607


How can you determine the size of an allocated portion of memory?

738


What are preprocessor directives in c?

632


hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .

1899


Describe the steps to insert data into a singly linked list.

620