Assume that, we are executing below mentioned code in 32
bit machine. What will be the output of code?
#include <stdio.h>
void main()
printf("%d,%d", sizeof(int*), sizeof(int **));
}
Answers
Answered by
0
NANBA..
{
#include<stdio.h>struct st{ int x; static int y;};int main(){ printf("%d", sizeof(struct st)); return 0;}
HOPE THE PROGRAMM USESEFULL...
Similar questions