Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Stucture/SizeS.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@


#include<stdio.h>
#include<stdlib.h>

struct stud {
typedef struct stud {
int roll;
char name[10];
int marks;
};
}Stude;

int main() {
int size;
struct stud s;
Stude stud s;

size = sizeof(s);
printf("nSize of Structure : %d", size);
Expand All @@ -42,4 +43,4 @@ int main() {
----------
sizeof is Operator not function
sizeof Operator Takes any Variable as Parameter.
*/
*/