Answer Posted / tdurga
HEADER IS INCLUDE <STDIO.H>.
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
Write a program to print ASCII code for a given digit.
why return type of main is not necessary in linux
What's the right way to use errno?
Do string constants represent numerical values?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the best way to comment out a section of code that contains comments?
Under what circumstances does a name clash occur?
What is %lu in c?
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?
Explain what are run-time errors?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How can I split up a string into whitespace-separated fields?
Write a program to implement queue.
Tell me what is null pointer in c?
Can the curly brackets { } be used to enclose a single line of code?