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


main()

{

int i = 3;

for (;i++=0;) printf(“%d”,i);

}



main() { int i = 3; for (;i++=0;) printf(“%d”,i); }..

Answer / susie

Answer :

Compiler Error: Lvalue required.

Explanation:

As we know that increment operators return rvalues and
hence it cannot appear on the left hand side of an
assignment operation.

Is This Answer Correct ?    14 Yes 1 No

Post New Answer

More C Code Interview Questions

void main() { if(~0 == (unsigned int)-1) printf(“You can answer this if you know how values are represented in memory”); }

1 Answers  


how to return a multiple value from a function?

5 Answers   Wipro,


write a program in c to merge two array

2 Answers  


main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }

1 Answers  


How we print the table of 2 using for loop in c programing?

14 Answers   HCL, Wipro,


Cau u say the output....?

1 Answers  


print a semicolon using Cprogram without using a semicolon any where in the C code in ur program!!

35 Answers   Tata Elxsi, TCS, VI eTrans,


void main() { int c; c=printf("Hello world"); printf("\n%d",c); }

2 Answers  


main() { char *p; p="%d\n"; p++; p++; printf(p-2,300); }

1 Answers  


How we will connect multiple client ? (without using fork,thread)

3 Answers   TelDNA,


How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?

0 Answers  


write a c program to print magic square of order n when n>3 and n is odd?

1 Answers   HCL,


Categories