Q : Write a C program to find size of structure without using sizeof operator.
#include<stdio.h>
#include<conio.h>
struct stu
{
int roll;
char
name[20];
float
marks[3];
};
Roll | Name | City |
---|---|---|
101 | Sona | Vns |
102 | Amit | Alld |
103 | Sumi | Alld |
104 | Rakesh | Vns |
105 | Jyoti | alld |