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
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is the purpose of the preprocessor directive error?
In which language linux is written?
Why use int main instead of void main?
What is n in c?
What is meant by preprocessor in c?
What is difference between union and structure in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What are the different types of constants?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What are the advantage of c language?
what are the different storage classes in c?
What is 1f in c?
Do variables need to be initialized?
find the sum of two matrices and WAP for it.