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. Which function is used to delete the allocated memory space?
Q. Choose correct Syntax for C Arithmetic Compound Assignment Operators.
Q. Choose a correct statement about C Language Functions.
Q. Choose correct statements about C Language Pass By Value.
Q. What is the disadvantage of arrays in C?
Q. Select the odd one out with respect to type?
Q. What will be the output of the following code snippet?
Q. Choose a correct statement about C Function.?
Q. What is the output of C program with String arrays?
Q. Given that x = 7.5, j = -1.0, n = 1.0, m = 2.0 the value of - - x + j == x>n> = m is:
Discusssion
Login to discuss.