What will be the output of the program on GCC compiler?
![]()
Practice Pointers –
What will be the output of the program on GCC compiler?
#include<stdio.h>
int main() {
printf("%d, %d
", sizeof(NULL), sizeof(""));
return 0;
}