-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5752e6a
commit b52b74e
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//sizeof() an union example | ||
|
||
#include<stdio.h> | ||
void main() | ||
{ | ||
int a; | ||
float b; | ||
struct student_details | ||
{ | ||
char name[20]; | ||
int regno; | ||
}student; | ||
|
||
union code | ||
{ | ||
int x; | ||
char c; | ||
float y; | ||
}sample; | ||
|
||
printf("size of variable a=%d\n",sizeof(a)); | ||
printf("size of variable b=%d\n",sizeof(b)); | ||
printf("size of structure variable is %d\n",sizeof(student)); | ||
printf("size of union variable is %d\n",sizeof(sample)); | ||
printf("size of integer is %d\n",sizeof(int)); | ||
|
||
} |