C | Data Types | Question 6

Last Updated :
Discuss
Comments
Output? C
int main() {     void *vptr, v;     v = 0;     vptr = &v;     printf("%v", *vptr);     getchar();     return 0; } 
0
Compiler Error
Garbage Value
Tags:
Share your thoughts in the comments