R
Q. What will be the output of the following C code?
#include <stdio.h> typedef struct student { char *a; }stu; void main() { struct student s; s.a = ""hey""; printf(""%s"", s.a); }
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. What is the output of C Program with arrays?
Q. Which type of conversion is NOT accepted?
Q. The ________ operator is true only when both the operands are true.
Q. What is the output of the following code snippet?
Q. Functions in C Language are always _________
Q. Which operators are known as Ternary Operator?
Q. What will be the output of the following C program?
Q. Which of the below statements is incorrect in case of union?
Discusssion
Login to discuss.