TutorialsBazaar

← Back

Learn C Programming

Module 6/15

Operators

Module 6 of 15

Operators perform operations on variables. Types include arithmetic (+, -, *, /), relational (==, !=), logical (&&, ||), and assignment (=).

Operators variables पर operations करते हैं। प्रकार हैं arithmetic, relational, logical और assignment operators।

#include <stdio.h>

int main() {
    printf("Welcome to Operators");
    return 0;
}