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
Is return a keyword in c?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
How can you tell whether two strings are the same?
If I have a char * variable pointing to the name of a function ..
What is difference between structure and union?
What is a newline escape sequence?
What is define directive?
How can I make sure that my program is the only one accessing a file?
What is c mainly used for?
What is 1d array in c?
What is structure of c program?
What is the difference between Printf(..) and sprint(...) ?
With the help of using classes, write a program to add two numbers.
Can a variable be both const and volatile?
What is the use of ?: Operator?