why we are using semicolon at the end of printh statment
Answer Posted / shashi
semicolon is used for terminate the line
| Is This Answer Correct ? | 38 Yes | 1 No |
Post New Answer View All Answers
What are Macros? What are its advantages and disadvantages?
Explain what is the concatenation operator?
How can I change the size of the dynamically allocated array?
Wt are the Buses in C Language
What is sizeof int in c?
Write a Program to find whether the given number or string is palindrome.
What is a method in c?
What is the hardest programming language?
What is a macro?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is the symbol indicated the c-preprocessor?
What is array of structure in c?
What is a #include preprocessor?
What is an array in c?
If null and 0 are equivalent as null pointer constants, which should I use?