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 / ali

1,2,

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

explain what is an endless loop?

607


Explain how to reverse singly link list.

603


Can a pointer be volatile in c?

531


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

2644


What are the rules for identifiers in c?

581






What is this pointer in c plus plus?

590


What are the functions to open and close the file in c language?

589


show how link list can be used to repersent the following polynomial i) 5x+2

1676


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

583


Why do we need functions in c?

551


What is header file definition?

565


Is python a c language?

550


Why c is called top down?

626


What is main () in c?

584


What is meant by type specifiers?

658