Module 7 of 15
Conditional statements like if, else, and switch are used for decision making. They execute code based on conditions.
if, else और switch का उपयोग decision making के लिए किया जाता है। ये conditions के आधार पर code execute करते हैं।
#include <stdio.h>
int main() {
printf("Welcome to Conditional Statements");
return 0;
}