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 |
Explain what happens if you free a pointer twice?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
write a program to display all prime numbers
What are local variables c?
In a switch statement, what will happen if a break statement is omitted?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
why TCS selected more student in the software field from all institution.
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
What is a Deque?
What are global variables and explain how do you declare them?
how to find a 5th bit is set in c program
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program