char ch="{'H','I',0};printf("%s",ch);what is output
Answer Posted / vignesh1988i
it will print hi...
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why calloc is better than malloc?
Write a program to implement queue.
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is the advantage of c?
What are the different types of C instructions?
Can the size of an array be declared at runtime?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Explain what is the difference between a string and an array?
What are c header files?
Explain what is the heap?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What are pointers?
How do you list a file’s date and time?
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. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
What is getche() function?