Skip to content

Commit ed65ad1

Browse files
committed
added some more codes
1 parent dc06cf6 commit ed65ad1

6 files changed

+88
-0
lines changed

typedef/a.out enum/a.out

16.3 KB
Binary file not shown.

enum/basic_of_enum.c

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//enum - Enumeration
2+
3+
#include<stdio.h>
4+
int main()
5+
{
6+
enum day {sun,mon,tue,wed=7,thu,fri,sat};
7+
printf("%d\n",sun); //by default first value take 0 and next value is 0+1
8+
printf("%d\n",thu);
9+
}

enum/day_enum.c

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//enum example
2+
#include<stdio.h>
3+
int main()
4+
{
5+
enum day {sun,mon,tue,wed,thu,fri,sat}d; //d is the enum variable
6+
7+
d=sun;
8+
if(d==mon)
9+
printf("working day\n");
10+
else if(d==sat)
11+
printf("Half working day\n");
12+
else
13+
printf("holiday\n");
14+
15+
}

typedef/typedef_functions.c

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//typedef with functions
2+
3+
#include<stdio.h>
4+
typedef int calc(int,int);
5+
calc add,sub,mul,div;
6+
7+
int main()
8+
{
9+
int a,b;
10+
printf("enter the nos\n");
11+
scanf("%d %d",&a,&b);
12+
13+
printf("sum :%d\n",add(a,b));
14+
printf("dif :%d\n",sub(a,b));
15+
printf("pro :%d\n",mul(a,b));
16+
printf("div :%d\n",div(a,b));
17+
}
18+
19+
int add (int a,int b)
20+
{
21+
return a+b;
22+
}
23+
int sub(int a,int b)
24+
{
25+
return a-b;
26+
}
27+
int mul(int a,int b)
28+
{
29+
return a*b;
30+
}
31+
int div(int a,int b)
32+
{
33+
return a/b;
34+
}

typedef/typedef_pointer.c

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// typedef with pointers
2+
3+
#include<stdio.h>
4+
typedef int *pointer;
5+
typedef int integer;
6+
int main()
7+
{
8+
integer x=10,y=20;
9+
pointer p,q; // equals to int *p,*q;
10+
p=&x;
11+
q=&y;
12+
printf("%d %d\n",*p,*q);
13+
*p=100;
14+
*q=200;
15+
printf("%d %d\n",*p,*q);
16+
}

typedef/typedef_structure.c

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//typedef with structure
2+
3+
#include<stdio.h>
4+
typedef struct A
5+
{
6+
int x;
7+
int y;
8+
}st; //st is not a structure variable. it is the alias name for structure A
9+
10+
int main()
11+
{
12+
st v={10,20};
13+
printf("%d %d\n",v.x,v.y);
14+
}

0 commit comments

Comments
 (0)