forked from blopker/codebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.c
More file actions
129 lines (108 loc) · 2.74 KB
/
example.c
File metadata and controls
129 lines (108 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#define MAXSIZ 100
#define NUMBR 42
// Structur definition with misspellings
struct UserAccaunt {
char* usrrname;
int ballance;
float intrest_rate;
};
// Enumm with misspelled values
enum Colrs {
REDD,
BLUU,
GREAN,
YELOW
};
// Global variabls
static int globalCountr = 0;
const char* mesage = "Helllo:Wolrd!";
// Funktion prototype
void* memry_allocaton(size_t siz);
int calculatr(int numbr1, int numbr2, char operashun);
// Main funktion with misspellings
int mainee(void) {
// Pointr declaration
int* pntr = NULL;
// Dynamik memory allokation
pntr = (int*)memry_allocaton(sizeof(int) * MAXSIZ);
if (pntr == NULL) {
printf("Memry allokation faled!\n");
return -1;
}
// Initalize array
for (int i = 0; i < MAXSIZ; i++) {
*(pntr + i) = i; // Pointr arithmetic
}
// Structur usage
struct UserAccaunt usrr1 = {
.usrrname = "JohnDoee",
.ballance = 1000,
.intrest_rate = 2.5f
};
// Conditionals and switchs
int resalt = calculatr(10, 5, '+');
switch (resalt) {
case 15:
printf("Currect anser!\n youu best");
break;
default:
printf("Rong anser!\n");
break;
}
// Whiel loop with misspellings
int countr = 0;
while (countr < 5) {
printf("Iterashun %d\n", countr++);
}
// Multi-line string with typos
char* multiline_txt = "This is a verry long string\n"
"that continuez on multiple linez\n"
"with lots of speling misstakes\n";
// Unions and typedefs
typedef union {
int intVal;
float fltVal;
char chrVal;
} NumbrUnionn;
// Bit operashuns
unsigned int flaggs = 0x0F;
flaggs = flaggs << 2; // Shift operashun
// Clean upp
free(pntr);
pntr = NULL;
return 0;
}
// Helper funktion implementashuns
void* memry_allocaton(size_t siz) {
return malloc(siz);
}
int calculatr(int numbr1, int numbr2, char operashun) {
int resalt = 0;
// Nested conditionals
if (operashun == '+') {
resalt = numbr1 + numbr2;
} else if (operashun == '-') {
resalt = numbr1 - numbr2;
} else if (operashun == '*') {
resalt = numbr1 * numbr2;
} else if (operashun == '/') {
if (numbr2 != 0) {
resalt = numbr1 / numbr2;
} else {
printf("Cannott divid by ziro!\n");
return -1;
}
}
return resalt;
}
// Funktion with variadic argumints
void printFormated(const char* formatt, ...) {
// Implementashun not shown
}
// Inline funktion example
inline static int quikMath(int x) {
return x * NUMBR;
}