Home » C Programming » Pointers

What will be the output of the program if the size of pointer is 4-bytes? #include<stdio.h> int main() { printf("%d, %d\n", sizeof(NULL), sizeof("")); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!