#include <iostream> using namespace std; int main() { cout << sizeof(char); cout << sizeof(int); cout << sizeof(float); return 0; }
a) 1 4 4
b) 1 4 8
c) 1 8 8
d) 1 8 2
What will be the output of the following C++ code (in 32-bit systems)?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What will be the output of the following C++ code (in 32-bit systems)?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!