What is out put? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is out put?

int m=10,n=5; int *mp, *np; mp = &m; np = &n; *mp += *np; *np = *mp - *np; printf("%d %d \n%d %d\n", m, *mp, n, *np) ;

31st Oct 2018, 12:08 PM
Praveen Kumar
Praveen Kumar - avatar
3 Answers
+ 2
Just run in code playground and see output
31st Oct 2018, 12:23 PM
Roneel
Roneel - avatar
+ 1
15 15 10 10 I think that!
31st Oct 2018, 12:16 PM
LetterC67
LetterC67 - avatar
0
15 15 5 5
31st Oct 2018, 3:19 PM
Praveen Kumar
Praveen Kumar - avatar