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 / p.yamini
1,2 20
| Is This Answer Correct ? | 9 Yes | 6 No |
Post New Answer View All Answers
Is python a c language?
What the advantages of using Unions?
Can we change the value of constant variable in c?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Which is better pointer or array?
How can I get back to the interactive keyboard if stdin is redirected?
How are 16- and 32-bit numbers stored?
Give basis knowledge of web designing ...
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
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
what does static variable mean?
What are pragmas and what are they good for?
What is the use of volatile?
I need a sort of an approximate strcmp routine?
Write a program to print factorial of given number without using recursion?