Math, asked by mohammedazarudeenm18, 3 months ago

What is the output of this C code?
#include <stdio.h>
int main()
{

int i = 10;
int *p=&i;
printf("%d\n",*p++);
}

Answers

Answered by nihalchandwani123
1

Answer:

the output of above code , after compiling is :-

10

Similar questions