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
p*=(++q)++*--p when p=q=1 while(q<=6)
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Explain how can I avoid the abort, retry, fail messages?
Which one would you prefer - a macro or a function?
What is this infamous null pointer, anyway?
What is stack in c?
Explain how do you print only part of a string?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is a buffer in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is p in text message?
What’s the special use of UNIONS?
Why do we need arrays in c?