ISRO CS

Programming and Data Structures

10 questions

Question 1 of 10Score: 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);