1. Which of the following is NOT a valid C expression?
a3
b.4&&2
C. 2,3
d. printf("Hello");
Answers
Answered by
0
Answer:
AB=18 cm
Bc=14 cm
Semi circle portion with bc
Diameter is cut off
Find the area of remaining paper .
Answered by
0
Answer:
d . printf("hello")
reason:
- In C programming language, printf() function is used to print the (“character, string, float, integer, octal and hexadecimal values”) onto the output screen.
- We use printf() function with %d format specifier to display the value of an integer variable.
- Similarly %c is used to display character, %f for float variable, %s for string variable, %lf for double and %x for hexadecimal variable.
- To generate a newline,we use “\n” in C printf() statement.
Similar questions