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

What is the purpose of ftell?

595


By using C language input a date into it and if it is right?

567


What does calloc stand for?

643


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1124


What is wrong with this initialization?

585






What is the general form of function in c?

607


What is volatile variable in c?

654


What is the purpose of realloc()?

665


What does main () mean in c?

609


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

738


How do you generate random numbers in C?

653


What is the use of a conditional inclusion statement in C?

596


What does %p mean c?

623


What is s or c?

591


What happens if header file is included twice?

650