FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Changing the most used form of Structs by thiagomonteles · Pull Request #2 · developerinsider/C-Programming-Example · GitHub

Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .c  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
9 changes: 5 additions & 4 deletions Stucture/SizeS.c
This file contains hidden or 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
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.
*/
*/

Back | FazBrowse Home | New Git URL