main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / pranu
655
Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Why does everyone say not to use scanf? What should I use instead?
What are the different types of data structures in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
I need a sort of an approximate strcmp routine?
Difference between exit() and _exit() function?
What is the significance of scope resolution operator?
How do you view the path?
Where register variables are stored in c?
Can you write the algorithm for Queue?
What is pointer and structure in c?
What is the purpose of 'register' keyword in c language?
What is indirection?
How can I read/write structures from/to data files?
How can you call a function, given its name as a string?
How can I read and write comma-delimited text?