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 / kathiravan.l

1,20

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

can we have joblib in a proc ?

1653


Distinguish between actual and formal arguments.

589


What Is The Difference Between Null And Void Pointer?

639


What does %c do in c?

584


What is clrscr in c?

673






Why flag is used in c?

651


What is the difference between typedef struct and struct?

594


Do you know what are the properties of union in c?

582


What is the symbol indicated the c-preprocessor?

694


Can we use any name in place of argv and argc as command line arguments?

606


What is the difference between procedural and functional programming?

517


What are types of structure?

602


How do you write a program which produces its own source code as output?

605


Where is volatile variable stored?

644


Explain what is the stack?

634