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.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / bhavitha
A C function is not a compound statement.
so D.
| Is This Answer Correct ? | 15 Yes | 1 No |
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
Why calloc is better than malloc?
What is the condition that is applied with ?: Operator?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Define function pointers?
who developed c and why he developed c?
Can a pointer be static?
What are the __date__ and __time__ preprocessor commands?
Why do we use int main?
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
write a program for egyptian fractions in c?
How will you find a duplicate number in a array without negating the nos ?