Computer Science, asked by pravinppk678, 5 hours ago

#include <stdio.h>
int main()
int a = 2, *b, C;
b = &a;
printf("%d", *b* a + *b);
a
*
at=2;
printf("%d", a * *b * a + *b);
a+=1,
printf("%d", a * *b* a + *b);
return 0;
Write the output of the given cod​

Answers

Answered by shivanshraj123
0

Explanation:

this is the output of your questions

Attachments:
Similar questions