TutorialsBazaar

← Back

Learn C++ Programming

Module 7/15

Conditional Statements

Module 7 of 15

Conditional statements like if, else, and switch help in decision making based on conditions.

if, else और switch का उपयोग conditions के आधार पर decision लेने के लिए किया जाता है।

#include <stdio.h>

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