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
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
what will be the output for the following main() { printf("hi" "hello"); }
List the difference between a "copy constructor" and a "assignment operator"?
How do you do dynamic memory allocation in C applications?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is the 'named constructor idiom'?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Where in memory are my variables stored?
What is the correct declaration of main?
How do I round numbers?
What header files do I need in order to define the standard library functions I use?
What is a pointer value and address in c?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
When is a “switch” statement preferable over an “if” statement?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.