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
write a program in c language to print your bio-data on the screen by using functions.
how can f be used for both float and double arguments in printf? Are not they different types?
largest Of three Number using without if condition?
What is a constant and types of constants in c?
code for replace tabs with equivalent number of blanks
Why do we use null pointer?
What is meant by high-order and low-order bytes?
What is return in c programming?
Why do we need a structure?
what will be the output for the following main() { printf("hi" "hello"); }
What is pass by value in c?
What is the symbol indicated the c-preprocessor?
What is the explanation for prototype function in c?
Can we assign integer value to char in c?
What is ambagious result in C? explain with an example.