Discussion :: Structures, Unions, Enums
-
What will be the output of the program ?
#include
struct course { int courseno; char coursename[25]; }; int main() { struct course c[] { {102,"Java"}, {103, "PHP"}, {104,"DotNet"}; printf("%d ", c[1].courseno); printf("%s\n", (*(c+2)).coursename); return 0; }
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment