Conditional Operator in C
C

Conditional Operator In C Language with Example (?:)

The conditional operators in C language are known by two more names Ternary Operator ?: Operator It is actually the if condition that we use in C language decision making, but using conditional operator, we turn the if condition statement into a short and simple operator. The syntax of a conditional operator is : expression […]

increament operator
C

Example of Increment or Decrement Operator in C Language

Increment and decrement operators in C C language contains two unary operators referred to as increment (++) and decrement (–) operators. The two unary arithmetic operators in C Increment operator (++) Decrement operator (- -) The increment operator increments the variable by one and the decrement operator decrements the variable by one. These operators can […]

Untitled
C Lists

C Programming language

C Language 1)     Define C-language. Ans: C-language is a structured programming language that divides the program into many functions. 2)     When and who developed C-language? Ans: Dennis Ritchie at Bell telephone laboratory-developed C-language in 1972 AD. 3)     Why is C called middle level language? Ans: C is called middle-level language because it combines elements of […]