R
Q. What will be output of the following c code?
struct marks{ int p:3; int c:3; int m:2; }; void main(){ struct marks s={2,-6,5}; printf(“%d %d %d”,s.p,s.c,s.m); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. C language is available for which of the following Operating Systems?
Q. can we use typedef to give a name to your user defined data types as well?
Q. Dimensions of an array in C are?
Q. Automatic variable also referred to as
Q. Which of the following is a Compound assignment operators?
Q. Left Shift operation is equivalent to?
Q. What is a String in C Language?
Q. Which operator is used to stringize variables in C?
Q. What is the output of C Program with Functions.?
Q. What characters are allowed in a C function name identifier.?
Discusssion
Login to discuss.