Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Last updated: Feb 25, 2022

Operators

The C language supports a rich set of built-in operators. An operator is a symbol that tells the compiler to perform certain mathematical or logical operations, based on the values provided to the operator. Operators are used in programs to manipulate data and variables.
Operators in C Programming EASY
Operators in C programming are symbols that are used to perform operations on operands. In this article, we will discuss types of operators in C programming.
Relational Operators in C EASY
Relational operators in C compare two values, returning true or false based on the relation. Learn about the meaning, summary, and types of C relational operators with syntax, code, and output.
Ternary Operator in C EASY
The term ternary refers to three, symbolising the use of three operands. Thus the name ternary operator in C came up as it requires three operands.
Modulus Operator in C EASY
Modulo operator % in C is used to find the remainder of the division of one integer by another. It's commonly used in various programming scenarios like determining if a number is even or odd etc.
Special Operators in C EASY
In this article, we will discuss about three special operators in C: the ternary operator, bitwise operators, & the comma operator. We will talk about their syntax, usage with examples to help you understand how they can be used effectively in our codes.
Bitwise Operators in C Programming EASY
Bitwise operators in C programming manipulate individual bits of data. They include AND, OR, XOR, complement, left shift, and right shift operators for efficient bitwise operations. Read on to learn more in detail!
Indirection Operator (*) in C MEDIUM
In this blog, we’ll understand the indirection operator in c language with examples, implementation, and Limitations of the Indirection Operator (*).
Operator Precedence and Associativity in C
In this article, we will discuss Operator Precedence and Associativity in C and some key points and examples.
sizeof() Operator in C EASY
The sizeof() operator in C returns the size, in bytes, of a data type or object, helping determine memory allocation needs.
Precedence of postfix ++ and prefix ++ in C EASY
This blog will demonstrate the precedence of postfix ++ and prefix ++ in C. We will also see an example to verify it.
Difference between ++*p, *p++ and *++p
This blog contains the difference between ++*p, *p++, and *++p in the C programming language. It contains various examples and precedence rule to evaluate the *, prefix and postfix expressions.
Author Aditi
0 upvotes
Results of comparison operations in C and C++ EASY
This blog explains the details of the results of comparison operations in C and C++.
Sequence Points in C EASY
This blog explains the details of Sequence Points and side effects in C along with examples.
Comma Operator in C EASY
Learn how to use the comma operator in C, a binary operator that evaluates its first operand and discards the result, then evaluates the second operand and returns this value
Execution of printf with ++ operators EASY
This blog contains the execution of printf with the ++ operator in C.
Author Aditi
0 upvotes
Anything Written in sizeof() is Never Executed EASY
This blog explains the details of the execution of sizeof() function along with its exceptions.
Difference between strlen() and sizeof()
This blog discusses the strlen() and sizeof() functions in C language. It highlights the key differences between the two functions.
Stringizing and Token-Pasting Operator MEDIUM