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 the c preprocessor do?
Why do we use header files in c?
Why is it that not all header files are declared in every C program?
How can you determine the size of an allocated portion of memory?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
why programs in c are running with out #include
What is bubble sort technique in c?
Why main is not a keyword in c?
What is the use of a conditional inclusion statement in C?
What is #include conio h?
What is the difference between if else and switchstatement
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is a MAC Address?
I need a sort of an approximate strcmp routine?
What is the code in while loop that returns the output of given code?