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

When should structures be passed by values or by references?

575


What is floating point constants?

681


What oops means?

575


Explain how do you list files in a directory?

610


Simplify the program segment if X = B then C ← true else C ← false

2575






What is the usage of the pointer in c?

596


How can you check to see whether a symbol is defined?

583


How do you determine whether to use a stream function or a low-level function?

638


Is struct oop?

574


Is c language still used?

532


What is extern variable in c with example?

532


What do you mean by c?

580


What is ambagious result in C? explain with an example.

2048


Do you know the use of 'auto' keyword?

652


Why c is called a mid level programming language?

599