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 / phani kumar s

B
A compound statement is set of statements which is embedded
in the curly brace and will perform the necessary task.

Is This Answer Correct ?    66 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Between macros and functions,which is better to use and why?

1565


Explain how can you tell whether two strings are the same?

580


Are negative numbers true in c?

595


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3118


Explain can static variables be declared in a header file?

672






write a c program in such a way that if we enter the today date the output should be next day's date.

1677


Why doesnt the call scanf work?

665


Why main is used in c?

583


Which header file should you include if you are to develop a function which can accept variable number of arguments?

799


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

774


What are variables c?

612


What is a function in c?

567


Why ca not I do something like this?

583


Combinations of fibanocci prime series

1105


Are pointers integer?

543