Why doesnt that code work?
No Answer is Posted For this Question
Be the First to Post Answer
What is pragma in c?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
what is ANSI and ISO
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
How many levels of pointers can you have?
What is the difference between printf and scanf in c?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What is void c?
Why c is known as a mother language?
What is "Hungarian Notation"?
how to find sum of digits in C?
what are the files which are automatically opened when a c file is executed?