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();
}
Answers were Sorted based on User's Feedback
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
Why c is called a mid level programming language?
What is pointer & why it is used?
How can I remove the trailing spaces from a string?
C language questions for civil engineering
How can I write functions that take a variable number of arguments?
What is the difference between procedural and declarative language?
how to sort two array of characters and make a new array of characters.
what is pointer ?
10 Answers Kernex Micro Systems,
What is #include conio h?
write a function for strtok()??