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 is the difference between 123 and 0123 in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What functions are in conio h?
What is adt in c programming?
What is floating point constants?
i got 75% in all semester am i eligible for your company
What is structure of c program?
write a progrmm in c language take user interface generate table using for loop?
Is c procedural or object oriented?
What is nested structure in c?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Can a program have two main functions?
How can you be sure that a program follows the ANSI C standard?
Tell me what are bitwise shift operators?
What does do in c?