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
What is meant by int main ()?
Is file a keyword in c?
What are header files in c programming?
How do you list files in a directory?
can anyone suggest some site name..where i can get some good data structure puzzles???
When should I declare a function?
Explain what are linked list?
Can you tell me how to check whether a linked list is circular?
What is the difference between %d and %i?
What is difference between function overloading and operator overloading?
What are the types of type qualifiers in c?
Explain the use of keyword 'register' with respect to variables.
Explain what is the benefit of using enum to declare a constant?
What is array of structure in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.