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


Please Help Members By Posting Answers For Below Questions

What is pointer in c?

735


Is there a way to switch on strings?

610


What is const keyword in c?

739


How is actual parameter different from the formal parameter?

587


How many types of arrays are there in c?

591






What is the use of structure padding in c?

561


What are the types of arrays in c?

619


Explain what is dynamic data structure?

642


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1257


What does 1f stand for?

605


I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.

1903


Wt are the Buses in C Language

2749


Where are some collections of useful code fragments and examples?

712


What is sizeof array?

606


Write a program to use switch statement.

655