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 / salman vamiq
1 20
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is scope and lifetime of a variable in c?
What is c standard library?
What is the purpose of the statement: strcat (S2, S1)?
Can you assign a different address to an array tag?
Explain threaded binary trees?
How to write a code for reverse of string without using string functions?
write a program to find out prime number using sieve case?
What is static memory allocation? Explain
Do you know what are the properties of union in c?
Why void is used in c?
How many main () function we can have in a project?
What are the 4 types of organizational structures?
how to introdu5ce my self in serco
What are loops in c?
What do you mean by dynamic memory allocation in c?