Why doesnt that code work?
No Answer is Posted For this Question
Be the First to Post Answer
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What are the functions to open and close file in c language?
Total of how many functions are available in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
difference between c and c++?
What is character set?
How can I sort more data than will fit in memory?
What are header files in c programming?
Explain how do you use a pointer to a function?
What are the properties of union in c?
What is a segmentation fault?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }