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
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Is fortran still used in 2018?
Explain what does a function declared as pascal do differently?
Why do we use pointer to pointer in c?
Where are c variables stored in memory?
What are structure types in C?
Hi can anyone tell what is a start up code?
Why is python slower than c?
Is swift based on c?
If I have a char * variable pointing to the name of a function ..
What is extern keyword in c?
Are pointers really faster than arrays?
What is the purpose of sprintf?
Explain what is the difference between null and nul?
write a programming in c to find the sum of all elements in an array through function.