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 |
void main() { if(~0 == (unsigned int)-1) printf(“You can answer this if you know how values are represented in memory”); }
how to return a multiple value from a function?
write a program in c to merge two array
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); }
How we print the table of 2 using for loop in c programing?
Cau u say the output....?
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); }
main() { char *p; p="%d\n"; p++; p++; printf(p-2,300); }
How we will connect multiple client ? (without using fork,thread)
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
write a c program to print magic square of order n when n>3 and n is odd?