Category: Language

21
May
2017

Typedef Enum

code: #include<stdio.h> typedef enum { SUN,MON,TUES,WED=70,THURS=80,FRI,SAT } days_of_week; typedef enum { FALSE,TRUE }Boolean; Boolean isEven(int n){ if(n%2==0)…

21
May
2017

Another Good Example of Struct using Function and Pointer

code: #include<stdio.h> typedef struct { int roll; char name[20]; double gp; double phy,chem,math; }sTudent; void inputStudent(sTudent *sp)…

21
May
2017

Using function with Struct user defined type also pointer

code: #include<stdio.h> typedef struct { int roll; char name[20]; double gp; } sTudent; void inputStudent(sTudent *sp) {…

21
May
2017

Use Pointer with Struct

code: #include<stdio.h> typedef struct{ int age; char name[20]; double gp; }student; int main() { student s1; student…

21
May
2017

Typedef Alias to Use Type without Struct keyword

code: #include<stdio.h> typedef int integer; //self declaration typedef struct Student student; struct Student{ int roll; char name[20];…

21
May
2017

Struct in C(User Defined Type)

code: #include<stdio.h> struct Student{ int roll; char name[20]; double gp; }; int main() { struct Student s1,s2,s3;…