Files
C-Projects/Order Of Programs.md

15 lines
1.7 KiB
Markdown

| Serial No. | Program Name | Executable File | Description of the program |
|------------|------------|---------------|--------------------------|
|1 | HelloWorld.c | HelloWorld.exe | WAP to print "Hello World!" |
|2 | VariablesPrintOut.c | VariablesPrintOut.exe | WAP to print values of two different variables on the output screen |
|3 | InputAndPrint.c | InputAndPrint.exe | WAP to take input from the keyboard & print the same value on the output screen |
|4 | ArithmeticOperations.c | ArithmeticOperations.exe | WAP to perform arithmetic operations (addition, subtraction, multiplication, division, modulo) |
|5 | MaximumNo.c | MaximumNo.exe | WAP to find maximum number using conditional operator |
|6 | ShortHandArithmeticOperations.c | ShortHandArithmeticOperations.exe | WAP to perform arithmetic operations (addition, subtraction, multiplication, division) by using shorthand operators |
|7 | SolveExpressions.c | SolveExpressions.exe | WAP to solve following expressions. r1= (a++) + (a++) & r2= (--a) + (a--).
|8 | MaximumNo3.c | MaximumNo3.exe | WAP to find maximum out of three number using conditional operator |
|9 | DataTypeSize.c | DataTypeSize.exe | WAP to check size of following data types: char,int,float, double |
|10 | BitwiseOperators.c | BitwiseOperators.exe | WAP to perform bitwise operators |
|11 | LogicalOperator.c | LogicalOperator.exe | WAP for logical operators |
|12 | SolveExpression2.c | SolveExpression2.exe | WAP to solve given expression "ans=a + b - (c*d) / f + g" |
|13 | SolveExpression3.c | SolveExpression3.exe | WAP to solve given expression "ans = a / (a+b) - [ d * e / (f*g)]" |