Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / p.yamini

1,2 20

Is This Answer Correct ?    9 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is python a c language?

1007


What the advantages of using Unions?

1231


Can we change the value of constant variable in c?

1057


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

1950


Which is better pointer or array?

1026


How can I get back to the interactive keyboard if stdin is redirected?

1188


How are 16- and 32-bit numbers stored?

1289


Give basis knowledge of web designing ...

2019


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

1029


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

1177


what does static variable mean?

1102


What are pragmas and what are they good for?

994


What is the use of volatile?

1083


I need a sort of an approximate strcmp routine?

1029


Write a program to print factorial of given number without using recursion?

992