void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / ram
233
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
How do I read the arrow keys? What about function keys?
Can stdout be forced to print somewhere other than the screen?
What is the c value paradox and how is it explained?
Explain Basic concepts of C language?
What is the right way to use errno?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What is the function of volatile in c language?
Can we declare variable anywhere in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
why return type of main is not necessary in linux
If errno contains a nonzero number, is there an error?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
How can I prevent another program from modifying part of a file that I am modifying?
How many types of functions are there in c?