Arguments in C
COMMAND LINE ARGUMENTS What are Command-Line Arguments? Command-line arguments are simple parameters that are given o…
February 24, 2024COMMAND LINE ARGUMENTS What are Command-Line Arguments? Command-line arguments are simple parameters that are given o…
Triangular Techies
February 24, 2024
HOW TO GET AN INPUT FROM USER Here, we use scanf keyword to get an input value from user. /* C program…
Triangular Techies
February 24, 2024
In C program we use printf keyword to display the output value. // Simple Hello World pr…
Triangular Techies
February 24, 2024
Type Casting is basically a process in C in which we change a variable belonging to one data type to another one. In ty…
Triangular Techies
February 24, 2024
Given that A, B, C are expressions; then the expression A ? B : C has as its value B if A is nonzer…
Triangular Techies
January 26, 2024
A = B : stores the value of B into A; A op= B :applies op to A and B, storing the result in A. A is a modifiable valu…
Triangular Techies
January 25, 2024
While increment and decrement operators in the C programming language both modify the value of a variable, they have …
Triangular Techies
January 25, 2024
Bitwise operator works on bits and perform bit-by-bit operation. The truth tables for &, |, ^ and ~ is as follows…
Triangular Techies
January 25, 2024
In C, relational operators are the symbols that are used for comparison between two values to understand the type of …
Triangular Techies
January 25, 2024
You can also test for true or false values with logical operators. Logical operators are used to determine the logic …
Triangular Techies
January 25, 2024
Arithmetic operators are used to perform common mathematical operations Example:
Triangular Techies
January 25, 2024
Operators Operators are used to manipulate and check operand values. In C programming Operators are symbols which tak…
Triangular Techies
January 25, 2024
The format specifiers are used in C for input and output purposes. Using this concept the compiler can understand that…
Triangular Techies
January 25, 2024
Copyright (c) 2024 Triangular Techies All Right Reserved