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 / ali

1,2,

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is assert and when would I use it?

578


How the c program is executed?

630


What are c header files?

578


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

667


What are the basic data types associated with c?

815






What is a program flowchart?

601


What is assignment operator?

622


Is r written in c?

722


What are void pointers in c?

574


Explain what are linked list?

620


What is the benefit of using #define to declare a constant?

601


What does s c mean in text?

607


What is the method to save data in stack data structure type?

603


What is extern keyword in c?

642


What are shell structures used for?

598