Write output of full program ?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write output of full program ??

void main() { int a , b, *p1, *p2 ,x ,y; a=10 , b=5; p1=&a; p2=&b; x=*p1**p2-6; y=*p1**p2+10; printf("a=%d,b=%d,a,b); printf("x=%d,y=%d,x,y); }

17th Apr 2020, 9:18 AM
manish0423
manish0423 - avatar
1 Answer
0
a=10,b=5 x=44,y=60
17th Apr 2020, 10:30 AM
Abirame Dhevendran
Abirame Dhevendran - avatar