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 / lohith
997664 -2-1-1112
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
Explain how can you check to see whether a symbol is defined?
What is the difference between array and structure in c?
What is function and its example?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
what are the facialities provided by you after the selection of the student.
Can you add pointers together? Why would you?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Is fortran faster than c?
Write a program to check armstrong number in c?
what value is returned to operating system after program execution?
Explain that why C is procedural?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Write a C program to count the number of email on text
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions