main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / mani
4 5 5
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of typedef in c?
What is the g value paradox?
Explain high-order and low-order bytes.
When should structures be passed by values or by references?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What is realloc in c?
When would you use a pointer to a function?
What are the 4 data types?
How are 16- and 32-bit numbers stored?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
How can I pad a string to a known length?
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 was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is a static function in c?