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
What is the purpose of clrscr () printf () and getch ()?
What is the use of extern in c?
What is difference between structure and union in c?
Can we compile a program without main() function?
what is reason of your company position's in india no. 1.
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is int main () in c?
What are the types of i/o functions?
List some basic data types in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Explain enumerated types in c language?
What is a nested formula?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Differentiate between ordinary variable and pointer in c.
Are pointers really faster than arrays?