-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
94 lines (85 loc) · 2.08 KB
/
main.c
File metadata and controls
94 lines (85 loc) · 2.08 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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
void list(int arg_count, ...)
{
va_list ap;
va_start(ap, arg_count);
for (int i = 1; i <= arg_count; i++)
printf("%d,",va_arg(ap, int));
}
void main(int argc,char *argv[])
{
//printf("%d",argc);
//printf("%s",argv[1]);
//Call Program by Function Name
//helloWorld();
//scanInput();
//sumOfTwoNumber();
//introToVar();
//typeCast();
//encode(97);
//decode('a');
//constType();
//arithmeticOperator();
//logicalOperator();
//bitwiseOperator();
//elvisOperator();
//sizeOfOperator();
//starAndMemoryOperator();
//swapProgram();
//tempConverter();
//ifElse();
//nestedIfElse();
//ifElseLadder();
//terneryCondition();
//switchStatment();
//nestedSwitchStatement();
//doWhileLoop();
//printf("Return%d",returnStatment());
//breakStatment();
//continueStatement();
//gotoStatment();
//singleDimension();
//strings();
//multidimensionalArray();
//pointerDemo();
//pointerArray();
//pointerToFunction();
//dyanamicAllocatedArray();
//functionDemo();
//functionWithArgument(10,11,13,'a');
//printf("%d",functionWithReturn(10));
//functionCallByRefrence();
//functionWithArray();
//recursionDemo(1);
//recursionApp(1,5);
//list(3,1,2,3);
//structureDemo();
//structureArray();
//structValAsParam();
//structAsParam();
//structurePointer();
//structAndArrayInsideStruct();
//unionDemo();
//enumDemo();
//typedefDemo();
//readAndWriteCharDemo();
//readAndWriteStringDemo();
//recordCreation();
//demoPrintfFormatter();
//demoScanfFormatter();
//openAndCloseFile();
//readFileStream();
//writeData();
//skipContent();
//removeContent();
//rewindContent();
//preprocessorsDemo();
//stackDemo();
//demoOfQueue();
//linkedListDemo();
//demoFileUtility();
debugDemo();
}