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
What are bitwise shift operators in c programming?
Is this program statement valid? INT = 10.50;
if p is a string contained in a string?
What is dangling pointer in c?
What is a struct c#?
What is an operator?
What is the difference between text files and binary files?
Differentiate between static and dynamic modeling.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Is null a keyword in c?
Who is the main contributor in designing the c language after dennis ritchie?
What is self-referential structure in c programming?
What is c language & why it is used?
Was 2000 a leap year?
What is a macro?