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 / kathiravan.l
1,20
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Write a program to swap two numbers without using third variable in c?
Explain enumerated types in c language?
What is #include stdio h and #include conio h?
Write a program to reverse a linked list in c.
What are the different types of data structures in c?
What is c programming structure?
How can you increase the size of a statically allocated array?
can anyone please tell about the nested interrupts?
What is difference between stdio h and conio h?
How to declare pointer variables?
What is the difference between functions getch() and getche()?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What are the key features in c programming language?
What header files do I need in order to define the standard library functions I use?
When should you not use a type cast?