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
Why does this code crash?
what is ur strangth & weekness
Do you know the use of 'auto' keyword?
What is the main difference between calloc () and malloc ()?
What is a function simple definition?
Can we declare variable anywhere in c?
What are static variables in c?
How can type-insensitive macros be created?
How are 16- and 32-bit numbers stored?
How can you call a function, given its name as a string?
What is array of structure in c programming?
Was 2000 a leap year?
What extern c means?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Which function in C can be used to append a string to another string?