Start Coding
3 subscribers
1 link
learn C , C++, JAVA Python ,CSS, HTML, js
as a beginner
Download Telegram
Channel created
What language are you starting in?
Anonymous Poll
33%
C
67%
C++
0%
Python
0%
JAVA
1
👉learn C , C++, JAVA Python ,CSS, HTML, js
as a beginner with full guidance 🫴
👍1
Tell me the problem which you faced
⚠️ I stating DSA in C++ language from today
what we do in First 2 months —

➡️ 1.Start Learning C++ with basic
➡️ 2.Clear all concept of basic loops Arrays.
➡️ 3.Question practice
➡️ 4.Build Logic for solving leetcode problem.
Let's Start ⚡️⚡️
C++ Language – Day 1

C++ kya hai?
C++ ek programming language hai jo
C se advance hai aur OOP support karti hai.

Use cases:
• Competitive programming
• Game development
• Software development

Simple Code:
#include <iostream>
using namespace std;

int main() {
cout << "Start Coding";
return 0;
}
👍1
⚠️⚠️YOU CAN ASK YOUR PROBLEM HERE 👇
https://t.me/coding_chat
Variables & Data Types
C++ Variables & Data Types

int → when your input or output number a integer
float →when your input or output number a decimal
char → when your input or output is a single character
string →when your input or output number text

Example:
int a = 10;
float b = 2.5;
char c = 'A';

cout << a << b << c;
⚡️INPUT AND OUTPUT IN C++
C++ Input / Output

Output:
cout << "Hello World";

Input:
int x;
cin >> x;

Example:
#include <iostream>
using namespace std;

int main() {
int x;
cin >> x;
cout << x;
return 0;
}
👉 we use cin for input