what is the Output?
int a=4 b=3;
printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++);
printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Answer Posted / lingaraja.d
5,5,5,5,5,5 2,2,2,2,2,2
| Is This Answer Correct ? | 3 Yes | 16 No |
Post New Answer View All Answers
What is the purpose of void in c?
What are the Advantages of using macro
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Write a code to generate a series where the next element is the sum of last k terms.
what is the function of pragma directive in c?
What is null pointer constant?
Tell me what is the purpose of 'register' keyword in c language?
In C language, a variable name cannot contain?
Explain what happens if you free a pointer twice?
What is the code for 3 questions and answer check in VisualBasic.Net?
What is a static function in c?
What is the size of structure in c?
When a c file is executed there are many files that are automatically opened what are they files?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
I need testPalindrome and removeSpace
#include