Module 4 of 15
Variables store data values. C++ supports int, float, double, char, bool, and string. Variables must be declared before use.
Variables डेटा स्टोर करने के लिए उपयोग होते हैं। C++ में int, float, double, char, bool और string प्रकार होते हैं।
#include <stdio.h>
int main() {
printf("Welcome to Variables & Data Types");
return 0;
}