โช Choose the correct option.
What will be the output of the program on a 64 bit GCC compiler?
#include
int main() {
float *p;
int *q;
printf("%d %d ", sizeof(p), sizeof(q));
return 0;
}
What will be the output of the program on a 64 bit GCC compiler?
What will be the output of the program on a 64 bit GCC compiler?
#include
int main() {
float *p;
int *q;
printf("%d %d ", sizeof(p), sizeof(q));
return 0;
}