I'm Manas Anand Singh, and I'm thrilled to introduce this repository to make C Programming a breeze for everyone. If you find value in my work, please consider following me on github. Your support means the world to me, and it keeps me motivated to continue providing helpful content.π Let's code together and learn!
Thank you for your support!
Warm regards, Manas Anand Singh (Andro) π
Write a program to Print Hello World using C Language
Windows 11, VS Code
It is a preprocessor Command which tells C Compiler to include
stdio.h
file before going to actual CompilationIt is the main Function where the program execution begins.
It is known as Single line Comment in C Programming. It is used when we want to ignore some text we write. When we write text that can provide information about program to a programmer
It is a pre-defined Function available in C programming for outputiing the Result to the screen.
The next line
return 0;
terminates the main() function and returns the value 0// Hello World Program in C language #include <stdio.h> int main(void){ printf("Hello World!\n"); // \n -> Inserts a newline. return 0; }Write a program to Calculate Simple Interest of A Investment in C Language
Windows 11, VS Code
- Primitive data types are the most basic data types that are used for representing simple values such as integers, float, characters, etc.
Datatype Description Integer
Stores whole numbers, including octal and hexadecimal. Character
Holds a single character, requires 1 byte. Floating Point
Stores decimal and exponential values with single precision. Double Floating Point
Stores decimal numbers with double precision. Void
Represents absence of a value; used in various ways, including function return types and pointers. #include<stdio.h> int main( ) { int p, n ; float r, si ; p = 1000 ; n = 3 ; r = 8.5 ; /* formula for simple interest */ si = p * n * r / 100 ; printf ( "Simple Interest = %f\n" , si ) ; /* %f for float data type in formatted strings. */ return 0; }Write a program to provides the details of standard integer types in C Language
Windows 11, VS Code
#include <stdlib.h>
: This line includes the standard library for functions like memory allocation (malloc
,free
).
#include <limits.h>
: This line includes a library containing constants for integer data types' limits.
#include <float.h>
: This line includes a library containing constants for floating-point data types' limits.The following table provides the details of standard integer types with their storage sizes and value ranges β
Type Storage size Value range char
1 byte -128 to 127 or 0 to 255 unsigned char
1 byte 0 to 255 signed char
1 byte -128 to 127 int
2 or 4 bytes -32,768 to 32,767 or -2,147,483,648 to 2,147,483,647 unsigned int
2 or 4 bytes 0 to 65,535 or 0 to 4,294,967,295 short
2 bytes -32,768 to 32,767 unsigned short
2 bytes 0 to 65,535 long
8 bytes or (4bytes for 32 bit OS) -9223372036854775808 to 9223372036854775807 unsigned long
8 bytes 0 to 18446744073709551615 #include <stdio.h> #include <stdlib.h> #include <limits.h> #include <float.h> int main() { printf("CHAR_BIT : %d\n", CHAR_BIT); // %d for integer data type in formatted strings. printf("CHAR_MAX : %d\n", CHAR_MAX); printf("CHAR_MIN : %d\n", CHAR_MIN); printf("INT_MAX : %d\n", INT_MAX); printf("INT_MIN : %d\n", INT_MIN); printf("LONG_MAX : %ld\n", (long) LONG_MAX); // %ld for long integer data type in formatted strings. printf("LONG_MIN : %ld\n", (long) LONG_MIN); printf("SCHAR_MAX : %d\n", SCHAR_MAX); printf("SCHAR_MIN : %d\n", SCHAR_MIN); printf("SHRT_MAX : %d\n", SHRT_MAX); printf("SHRT_MIN : %d\n", SHRT_MIN); printf("UCHAR_MAX : %d\n", UCHAR_MAX); printf("UINT_MAX : %u\n", (unsigned int) UINT_MAX); // %u for unsigned integer data type in formatted strings. printf("ULONG_MAX : %lu\n", (unsigned long) ULONG_MAX); // %lu for unsigned long integer data type in formatted strings. printf("USHRT_MAX : %d\n", (unsigned short) USHRT_MAX); return 0; }Write a program to provides the details of standard floating-point types in C Language
Windows 11, VS Code
The following table provide the details of standard floating-point types -
Type Storage size Value range Precision float 4 bytes 1.2E-38 to 3.4E+38 6 decimal places double 8 bytes 2.3E-308 to 1.7E+308 15 decimal places long double 10 bytes 3.4E-4932 to 1.1E+4932 19 decimal places #include <stdio.h> #include <stdlib.h> #include <limits.h> #include <float.h> int main() { printf("Storage size for float : %lu \n", sizeof(float)); // sizeof(Data_Type): Calculates the storage space in bytes of the provided data type. printf("FLT_MAX: %g\n", (float) FLT_MAX); // %g: Format specifier for a general floating-point number. printf("FLT_MIN: %g\n", (float) FLT_MIN); printf("-FLT_MAX: %g\n", (float) -FLT_MAX); printf("-FLT_MIN: %g\n", (float) -FLT_MIN); printf("Double Max: %g\n", (double) DBL_MAX); printf("Double Min: %g\n", (double) DBL_MIN); printf("-Double Max: %g\n", (double) -DBL_MAX); printf("Float Precision: %d decimal places\n", FLT_DIG); // Decimal digits of precision for float. return 0; }Write a Program to demostrate the working of Variables in C Language
Windows 11, VS Code
A variable is nothing but a name given to a storage area that our programs can manipulate.
- Syntax :
type variable_list;
- Examples:
float f, salary; double d;
- Syntax :
type variable_name = value;
- Examples:
int d = 3, f = 5; // definition and initializing d and f. char x = 'x'; // the variable x has the value 'x'.#include <stdio.h> // Variable declaration: // You will use the keyword extern to declare a variable at any place. extern int a, b; extern int c; extern float f; int main () { /* variable definition: */ int a, b; int c; float f; /* actual initialization */ a = 10; b = 20; c = a + b; printf("value of c : %d \n", c); f = 70.0/3.0; printf("value of f : %f \n", f); return 0; }Write a Program expalaining the working of Constants in C Language
Windows 11, VS Code
Constants refer to fixed values that the program may not alter during its execution. These fixed values are also called literals.
Constants can be of any of the basic data types like an integer constant, a floating constant, a character constant, or a string literal. There are enumeration constants as well.
An integer literal can be a decimal, octal, or hexadecimal constant.
Following are other examples of various types of integer literals β
85 /* decimal */ 0213 /* octal */ 0x4b /* hexadecimal */
A floating-point literal has an integer part, a decimal point, a fractional part, and an exponent part. You can represent floating point literals either in decimal form or exponential form.
Here are some examples of floating-point literals β
3.14159 /* Legal */ 314159E-5L /* Legal */
Character literals are enclosed in single quotes, e.g., 'x' can be stored in a simple variable of char type.
A character literal can be a plain character (e.g., 'x'), an escape sequence (e.g., '\t'), or a universal character (e.g., '\u02C0').
String literals or constants are enclosed in double quotes "". A string contains characters that are similar to character literals: plain characters, escape sequences, and universal characters.
Here is a example of string literals. The two forms are identical strings.
"hello, dear" "hello, " "d" "ear"
There are two simple ways in C to define constants β
- Using
#define
preprocessor.- Using
const
keyword.Given below is the form to use #define preprocessor to define a constant β
#define identifier value
You can use const prefix to declare constants with a specific type as follows β
const type variable = value;
#include <stdio.h> #define NEWLINE '\n' int main() { const int LENGTH = 10; const int WIDTH = 5; int area; area = LENGTH * WIDTH; printf("value of area : %d", area); printf("%c", NEWLINE); return 0; }Write a program to demostrate working of different Operators in C Language
Windows 11, VS Code
An operator is a symbol that tells the compiler to perform specific mathematical or logical functions. C language provides the following types of operators β
- Arithmetic Operators
- Relational Operators
- Logical Operators
- Bitwise Operators
- Assignment Operators
- Misc Operators
The following table shows all the arithmetic operators supported by the C language. Assume variable A holds 10 and variable B holds 20 then β
Operator Description Example +
Adds two operands. A + B = 30 -
Subtracts second operand from the first. A β B = -10 *
Multiplies both operands. A * B = 200 /
Divides numerator by de-numerator. B / A = 2 %
Gives remainder after an integer division. B % A = 0 ++
Increases the integer value by one. A++ = 11 --
Decreases the integer value by one. A-- = 9 The following table shows all the relational operators supported by C. Assume variable A holds 10 and variable B holds 20 then β
Operator Description Example ==
Equal to (A == B) is not true. !=
Not Equal to (A != B) is true. >
Greater than (A > B) is not true. <
Less than (A < B) is true. >=
Greater than equal to (A >= B) is not true. <=
Less than equal to (A <= B) is true. The following table shows all the arithmetic operators supported by the C language. Assume variable A holds 10 and variable B holds 20 then β
Operator Description Example &&
Logical AND: True only if both non-zero (A && B) is false. ||
Logical OR: True if either non-zero (A || B) is true. !
Logical NOT: Reverses operand's logic state !(A && B) is true. Bitwise operator works on bits and perform bit-by-bit operation. The truth tables for &, |, and ^ is as follows β
p q p & q p | q p ^ q 0 0 0 0 0 0 1 0 1 1 1 1 1 1 0 1 0 0 1 1 The following table lists the bitwise operators supported by C. Assume variable 'A' holds 60 and variable 'B' holds 13, then β
Operator Description Example &
Binary AND: Returns 1 if both bits are 1 (A & B) = 12 |
Binary OR: Returns 1 if any bit is 1 (A | B) = 61 ^
Binary XOR: Copies if set in one but not both (A ^ B) = 49 ~
Unary One's Complement: Flips bits (~A) = -60 <<
Left Shift: Shifts left by right operand bits A << 2 = 240 >>
Right Shift: Shifts right by right operand bits A >> 2 = 15
Operator Description Example =
Simple assignment: Assigns right to left operand C = A + B assigns A + B to C +=
Add AND assignment: Adds right to left and assigns C += A is like C = C + A -=
Subtract AND assignment: Subtracts and assigns C -= A is like C = C - A *=
Multiply AND assignment: Multiplies and assigns C *= A is like C = C * A /=
Divide AND assignment: Divides and assigns C /= A is like C = C / A %=
Modulus AND assignment: Takes modulus and assigns C %= A is like C = C % A <<=
Left shift AND assignment: Left shift and assigns C <<= 2 is like C = C << 2 >>=
Right shift AND assignment: Right shift and assigns C >>= 2 is like C = C >> 2 &=
Bitwise AND assignment: Bitwise AND and assigns C &= 2 is like C = C & 2 ^=
Bitwise XOR assignment: Bitwise XOR and assigns C ^= 2 is like C = C ^ 2 |=
Bitwise OR assignment: Bitwise OR and assigns C |= 2 is like C = C | 2 Besides the operators discussed above, there are a few other important operators including sizeof and ? : supported by the C Language.
Operator Description Example sizeof()
Returns size of variable sizeof(a)
fora
as integer returns 4&
Returns address of variable &a
returns the actual address of the variable*
Pointer to variable *a
returns the value at the address stored ina
?:
Conditional (Ternary) Operator Condition ? X : Y
returnsX
if true,Y
otherwise#include <stdio.h> int main() { unsigned int a = 21; unsigned int b = 10; int c; printf("Arithmatic Operators:\n"); printf("a + b: %d\n", a + b ); printf("a - b: %d\n", a - b ); printf("a * b: %d\n", a * b ); printf("a / b: %d\n", a / b ); printf("a % b: %d\n", a % b ); printf("++a: %d\n", ++a ); printf("--a: %d\n", --a ); printf("\nRelational Operators:\n"); printf("a == b: %d\n", a == b); // 0 (false) printf("a != b: %d\n", a != b); // 1 (true) printf("a > b: %d\n", a > b); // 0 (false) printf("a < b: %d\n", a < b); // 1 (true) printf("a >= b: %d\n", a >= b); // 0 (false) printf("a <= b: %d\n", a <= b); // 1 (true) printf("\nLogical Operators:\n"); printf("a && b: %d\n", a && b); printf("a || b: %d\n", a || b); printf("!a : %d\n", !a); a = 60; b = 13; printf("\nBitwise Operators:\n"); printf("a & b : %d\n", a & b); printf("a | b : %d\n", a | b); printf("a ^ b : %d\n", a ^ b); printf("~a : %d\n", ~a); printf("a << 2: %d\n", a << 2); printf("a >> 1: %d\n", a >> 1); a = 21; printf("\nAssignment Operators:\n"); c = a; printf("c = a: %d\n", c); c += a; printf("c += a: %d\n", c); c -= a; printf("c -= a: %d\n", c); c *= a; printf("c *= a: %d\n", c); c /= a; printf("c /= a: %d\n", c); c = 200; c %= a; printf("c %%= a: %d\n", c); c <<= 2; printf("c <<= 2: %d\n", c ); c >>= 2; printf("c >>= 2: %d\n", c ); c &= 2; printf("c &= 2: %d\n", c ); c ^= 2; printf("c ^= 2: %d\n", c ); c |= 2; printf("c |= 2: %d\n", c ); printf("\nMiscellaneous Operators:\n"); printf("sizeof(int): %lu bytes\n", sizeof(int)); // Sizeof operator int x = 42; int *ptr = &x; // Address-of operator printf("Address of x: %p\n", ptr); return 0; }Write a program to demostrate working of if statement in C Programming
Windows 11, VS Code
Decision-making structures in programming involve evaluating conditions and executing specific statements based on whether the condition is true or false.
Show below is the general form of a typical decision making structure found in most of the programming languages β
Following are the decision-making statements available in C:
- if Statement
- if-else Statement
- Nested if Statement
- if-else-if Ladder
- switch Statement
- Conditional Operator
- Jump Statements:
- break
- continue
- goto
- return
An if statement consists of a boolean expression followed by one or more statements.
if(boolean_expression) { /* statement(s) will execute if the boolean expression is true */ }
// TutorialsPoint Program #include <stdio.h> int main () { int a = 10; /* check the boolean condition using if statement */ if( a < 20 ) { /* if condition is true then print the following */ printf("a is less than 20\n" ); } printf("value of a is : %d\n", a); return 0; } // C Programming Book Program #include <stdio.h> int main(){ int num; printf("Enter a number less than 10: "); scanf("%d", &num); if(num <= 10) printf("What an obedient servant you are!\n"); return 0; }Write a program to demostrate working of if-else statement in C Programming
Windows 11, VS Code
An if statement can be followed by an optional else statement, which executes when the Boolean expression is false.
if(boolean_expression) { /* statement(s) will execute if the boolean expression is true */ } else { /* statement(s) will execute if the boolean expression is false */ }
// TutorialsPoint Program #include <stdio.h> int main () { /* local variable definition */ int a = 100; /* check the boolean condition */ if( a < 20 ) { /* if condition is true then print the following */ printf("a is less than 20\n" ); } else { /* if condition is false then print the following */ printf("a is not less than 20\n" ); } printf("value of a is : %d\n", a); return 0; } // C Programming Book Program /* Calculation of gross salary */ #include <stdio.h> int main() { float bs, gs, da, hra ; printf ( "Enter basic salary " ) ; scanf ( "%f", &bs ) ; if ( bs < 1500 ) { hra = bs * 10 / 100 ; da = bs * 90 / 100 ; } else { hra = 500 ; da = bs * 98 / 100 ; } gs = bs + hra + da ; printf ( "gross salary = Rs. %f", gs ) ; }Write a program to demostrate working of nested if statement in C Programming
Windows 11, VS Code
You can use one if or else if statement inside another if or else if statement(s).
if( boolean_expression 1) { /* Executes when the boolean expression 1 is true */ if(boolean_expression 2) { /* Executes when the boolean expression 2 is true */ } }
// TutorialsPoint Program #include <stdio.h> int main () { /* local variable definition */ int a = 100; int b = 200; /* check the boolean condition */ if( a == 100 ) { /* if condition is true then check the following */ if( b == 200 ) { /* if condition is true then print the following */ printf("Value of a is 100 and b is 200\n" ); } } printf("Exact value of a is : %d\n", a ); printf("Exact value of b is : %d\n", b ); return 0; } // C Programming Book Program /* A quick demo of nested if-else */ #include <stdio.h> int main( ) { int i ; printf ( "Enter either 1 or 2 " ) ; scanf ( "%d", &i ) ; if ( i == 1 ) printf ( "You would go to heaven !" ) ; else { if ( i == 2 ) printf ( "Hell was created with you in mind" ) ; else printf ( "How about mother earth !" ) ; } return 0; }Write a program to demostrate working of while Loop in C Programming
Windows 11, VS Code
A loop statement allows us to execute a statement or group of statements multiple times. Given below is the general form of a loop statement in most of the programming languages β
Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.
while(condition) { statement(s); }
// TutorialsPoint Program #include <stdio.h> int main () { /* local variable definition */ int a = 10; /* while loop execution */ while( a < 20 ) { printf("value of a: %d\n", a); a++; } return 0; } // C Programming Book Program #include<stdio.h> int main( ) { int p, n, count ; float r, si ; count = 1 ; while ( count <= 3 ) { printf ( "\nEnter values of p, n and r : " ) ; scanf("%d %d %f", &p, &n, &r); si=p*n*r/100; printf ( "Simple interest = Rs. %f\n", si ) ; count++; } return 0; }Write a program to demostrate working of do...while Loop in C Programming
Windows 11, VS Code
It is more like a while statement, except that it tests the condition at the end of the loop body.
do { statement(s); } while( condition );
// TutorialsPoint Program #include <stdio.h> int main () { /* local variable definition */ int a = 10; /* do loop execution */ do { printf("value of a: %d\n", a); a++; }while( a < 20 ); return 0; } // C Programming Book Program #include<stdio.h> int main() { do { printf ( "Hello there \n") ; } while ( 4 < 1 ) ; return 0; }Write a matrix program to demostrate working of for Loop in C Programming
Windows 11, VS Code
Executes a sequence of statements multiple times and abbreviates the code that manages the loop variable.
for ( init; condition; increment ) { statement(s); }
// For Loop Matrix Program #include <stdio.h> int main() { int rows, cols; // Input the dimensions of the matrices printf("Enter the number of rows: "); scanf("%d", &rows); printf("Enter the number of columns: "); scanf("%d", &cols); // Initialize matrices A and B int A[rows][cols]; int B[rows][cols]; // Input elements for matrix A printf("Enter elements for matrix A:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("A[%d][%d]: ", i, j); scanf("%d", &A[i][j]); } } // Input elements for matrix B printf("Enter elements for matrix B:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("B[%d][%d]: ", i, j); scanf("%d", &B[i][j]); } } // Addition of matrices A and B int sum[rows][cols]; for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { sum[i][j] = A[i][j] + B[i][j]; } } // Subtraction of matrices A and B int difference[rows][cols]; for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { difference[i][j] = A[i][j] - B[i][j]; } } // Multiplication of matrices A and B int product[rows][cols]; if (cols == rows) { for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { product[i][j] = 0; for (int k = 0; k < cols; k++) { product[i][j] += A[i][k] * B[k][j]; } } } } else { printf("Matrix multiplication is not possible because the number of columns in A is not equal to the number of rows in B.\n"); } // Display results printf("\nMatrix A:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("%d\t", A[i][j]); // \t -> Inserts a tab in the text at this point. } printf("\n"); } printf("\nMatrix B:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("%d\t", B[i][j]); } printf("\n"); } printf("\nMatrix A + B:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("%d\t", sum[i][j]); } printf("\n"); } printf("\nMatrix A - B:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("%d\t", difference[i][j]); } printf("\n"); } if (cols == rows) { printf("\nMatrix A * B:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("%d\t", product[i][j]); } printf("\n"); } }else{ printf("The Multiplication of Given matrices is not possible"); } return 0; }Write a program to print different patterns using for Loop in C Programming
Windows 11, VS Code
#include <stdio.h> int main() { int n = 5; printf("Right Triangle Pattern:\n"); for (int i = 0; i < n; i++) { for (int j = 0; j <= i; j++) { printf("* "); } printf("\n"); } printf("\nLeft Triangle Pattern:\n"); for (int i = 0; i < n; i++) { for (int j = 0; j < 2 * (n - i) - 1; j++) { printf(" "); } for (int k = 0; k <= i; k++) { printf("* "); } printf("\n"); } printf("\nInverted Right Triangle Pattern:\n"); for (int i = n; i > 0; i--) { for (int j = 0; j < i; j++) { printf("* "); } printf("\n"); } printf("\nPyramid Pattern:\n"); for (int i = 1; i <= n; i++) { for (int j = 1; j <= n - i; j++) { printf(" "); } for (int k = 1; k <= 2 * i - 1; k++) { printf("*"); } printf("\n"); } printf("\nDiamond Pattern:\n"); for (int i = 0; i < n; i++) { for (int j = 0; j < n - i; j++) { printf(" "); } for (int k = 0; k < 2 * i + 1; k++) { printf("* "); } printf("\n"); } for (int i = n - 2; i >= 0; i--) { for (int j = 0; j < n - i; j++) { printf(" "); } for (int k = 0; k < 2 * i + 1; k++) { printf("* "); } printf("\n"); } return 0; }Write a program to demostrate Working of Switch case in C Programming
Windows 11, VS Code
A switch statement allows a variable to be tested for equality against a list of values.
switch(expression) { case constant-expression : statement(s); break; /* optional */ case constant-expression : statement(s); break; /* optional */ /* you can have any number of case statements */ default : /* Optional */ statement(s); }
Terminates the loop or switch statement and transfers execution to the statement immediately following the loop or switch.
break;
Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating.
continue;
// Program from Let us C #include <stdio.h> int main( ) { int i = 2 ; switch ( i ) { case 1 : printf ( "I am in case 1 \n" ) ; break ; case 2 : printf ( "I am in case 2 \n" ) ; break ; case 3 : printf ( "I am in case 3 \n" ) ; break ; default : printf ( "I am in default \n" ) ; } return 0; } // Program from Tutorials Point #include <stdio.h> int main () { /* local variable definition */ char grade = 'B'; switch(grade) { case 'A' : printf("Excellent!\n" ); break; case 'B' : case 'C' : printf("Well done\n" ); break; case 'D' : printf("You passed\n" ); break; case 'F' : printf("Better try again\n" ); break; default : printf("Invalid grade\n" ); } printf("Your grade is %c\n", grade ); return 0; }Write a program to demostrate Working of functions in C Programming
A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions.
The syntax of function can be divided into 3 aspects:
- Function Declaration
- Function Definition
- Function Calls
return_type function_name( parameter list );
- Exapmle:
int sum(int a, int b);
return_type function_name( parameter list ) { body of the function }
- Example:
int sum(int a, int b) { return a + b; }
function_name( parameter list );
- Example:
sum(10, 30);
If a function is to use arguments, it must declare variables that accept the values of the arguments. These variables are called the formal parameters of the function.
Formal parameters behave like other local variables inside the function and are created upon entry into the function and destroyed upon exit.
While calling a function, there are two ways in which arguments can be passed to a function β
Call Type Description Call By Value
This method copies the actual value of an argument into the formal parameter of the function. Call By Reference
This method copies the address of an argument into the formal parameter. // Program from Let us C // First Program #include <stdio.h> void italy(); void brazil(); void argentina(); int main( ) { printf("I am in main"); italy(); brazil(); argentina(); return 0; } void italy() { printf ("\nI am in italy"); } void brazil() { printf ("\nI am in brazil"); } void argentina() { printf ("\nI am in argentina\n"); } // Second Program #include <stdio.h> int calsum(); /* Sending and receiving values between functions */ int main( ) { int a, b, c, sum ; printf ( "Enter any three numbers: " ) ; scanf ( "%d %d %d", &a, &b, &c ) ; sum = calsum ( a, b, c ) ; printf ( "Sum = %d\n", sum ) ; } int calsum ( x, y, z ) int x, y, z ; { int d ; d = x + y + z ; return ( d ) ; } // Third Program #include <stdio.h> float square( float x); int main( ) { float a, b ; printf ( "Enter any number: " ) ; scanf ( "%f", &a ) ; b = square ( a ) ; printf ( "Square of %f is %f\n", a, b ) ; } float square ( float x ) { float y ; y = x * x ; return ( y ) ; } // Program from Tutorials Point #include <stdio.h> /* function declaration */ int max(int num1, int num2); int main () { /* local variable definition */ int a = 100; int b = 200; int ret; /* calling a function to get max value */ ret = max(a, b); printf( "Max value is : %d\n", ret ); return 0; } /* function returning the max between two numbers */ int max(int num1, int num2) { /* local variable declaration */ int result; if (num1 > num2) result = num1; else result = num2; return result; }
-
Notifications
You must be signed in to change notification settings - Fork 0
C Programming Lab File Programs
License
MSAndromeda/CProgMCALab2023
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Repository files navigation
About
C Programming Lab File Programs
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published