main()
{ int i;
printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i));
}
ans is 24 bt how?pls tell smbody............
Answer Posted / rama krishna sidhartha
Actually answer is not 24 it is -7567. When i executed this
in the turbo c compiler i got the answer like that.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
write a program to copy the string using switch case?
Give the rules for variable declaration?
Explain how can you be sure that a program follows the ansi c standard?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is the difference between null pointer and wild pointer?
How can I call a function with an argument list built up at run time?
why return type of main is not necessary in linux
What is a file descriptor in c?
Explain what is a pragma?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Discuss the function of conditional operator, size of operator and comma operator with examples.
hi, which software companys will take,if d candidate's % is jst 55%?
What does. int *x[](); means ?