SUPARN PATRA
Schools
Exams
Paths
Blog
Quizzes
Tools
Playground
About
Home
/
Quizzes
/
ISRO CS
/
Programming and Data Structures
ISRO CS
Programming and Data Structures
10 questions
Question 1 of 10
Score:
0
/ 0
What is the output of the following C code? int a = 5, b = 10; int *p = &a, *q = &b; *p = *p + *q; printf("%d %d", a, b);
A
5 10
B
15 10
C
10 15
D
15 15
← Back to unit notes