What is false about the following
A compound statement is
a.A set of simple statments
b.Demarcated on either side by curly brackets
c.Can be used in place of simple statement
d.A C function is not a compound statement.
Answer Posted / ravikumar
Demarcated on either side by curly brackets
| Is This Answer Correct ? | 32 Yes | 9 No |
Post New Answer View All Answers
What is the use of a static variable in c?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is a buffer in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Can you write a programmer for FACTORIAL using recursion?
Why should I prototype a function?
What is wrong with this statement? Myname = 'robin';
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Write a C program in Fibonacci series.
What is an arrays?
Why calloc is better than malloc?
What is the heap?
Difference between linking and loading?
What is variable initialization and why is it important?