//This program is compiled on 32 bit DEV-C++ int main() { char *ptr1, *ptr2; printf(“%d %d”, sizeof(ptr1), sizeof(ptr2)); return 0; } A. 1 1 B. 2 2 C. 4 4 D. Undefined Answer Workspace Report Discuss Answer with explanation Answer: Option C Explanation On 32 compilers pointer’s size is 4 bytes while on 64 bit compiler pointers size is 8 bytes. Note – If your computer is 64 bits then you can use both 32 bits and 64 bits compiler on it. Workspace
Discuss about the question