@pradeep-agrawal-rhdX5z
•
Oct 26, 2024
Oct 26, 2024
1.4K
sizeof() in 'C'
Below code was compiled and executed on a 32-bit machine where size if 'int' is '4':
#include “stdio.h”
int main() {
int i = 0, j = 0;
j =...