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...


int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);

Answers were Sorted based on User's Feedback



int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d&quo..

Answer / jai

printf() will never be executed since for() is an infinite
loop.

Is This Answer Correct ?    30 Yes 2 No

int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d&quo..

Answer / vikramanj

int i=10[;]
main()
{
int i=20,n;
for(n=0;n<=i;)
{
int i=10[;]
i++;
}
printf("%d", i);
The syntax errs r specified in sq.braces..
if its corrected there s no terminating condition also..
so no o/p..

Is This Answer Correct ?    8 Yes 0 No

int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d&quo..

Answer / vignesh1988i

it will not print i value at all , since the loop is always
true for all cases. since the termination condition is
depending upon n&i,always n<=i, what ever possibe positive
value greater than zero ,it may be.

Is This Answer Correct ?    5 Yes 0 No

int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d&quo..

Answer / dips

it doesnt have any terminating condition so it will be
infinite loop ,no output

Is This Answer Correct ?    4 Yes 0 No

int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d&quo..

Answer / guest

the print would be 20.

the problem is about scope. the first i=10 is global scope.
But inside main() comes function scope. So i=20. The i
inside the for loop is of block scope and does not affect
the i outside it.

Is This Answer Correct ?    5 Yes 9 No

int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d&quo..

Answer / guest

i=20

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More C Interview Questions

what defference between c and c++ ?

6 Answers  


What is the use of bitwise operator?

0 Answers  


What is encapsulation?

2 Answers  


How the C program can be compiled?

11 Answers   HP,


Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a

7 Answers  


How to add two numbers with using function?

2 Answers   Miracle Solutions,


Explain the differences between public, protected, private and internal.

2 Answers  


what is compiler

7 Answers  


WHAT IS HEADER?

8 Answers   ProKarma, TCS,


What is a good data structure to use for storing lines of text?

0 Answers  


int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?

2 Answers  


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

0 Answers  


Categories