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
What does struct node * mean?
What is hash table in c?
What is a double c?
Is there any data type in c with variable size?
Why isn't it being handled properly?
What is the maximum no. of arguments that can be given in a command line in C.?
What is the difference between exit() and _exit() function?
Explain the use of function toupper() with and example code?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What’s the special use of UNIONS?
Can a variable be both constant and volatile?
How many bytes are occupied by near, far and huge pointers (dos)?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
number of times a digit is present in a number
Is void a keyword in c?