search:
Home
Questions
Quizes
Home
ยป
C language Chapter 5
View
Take
Results
C language Chapter 5
Question
1
of
10
What will be the output of this C language program?
#include <stdio.h>
void inc_ptr(*int p){
(*p)++;
return;
}
int main(){
int *p;
*p=12;
inc_ptr(p);
printf("%d", *p);
return 0;
}
Choose one:
12
13
undefined
Categories
C programming language
GMAT
MySQL