C & C++ PROGRAMMING
3.19K subscribers
126 photos
6 videos
65 files
76 links
https://t.me/addlist/oJIs6WVKrqBmMWQ1

Hello! I am @Myhurthearts and welcome to the Coding channel! Here we can learn all things related to coding and improve our skills , just let me know!
Download Telegram
Which keyword is used to define a constant in C?
Anonymous Quiz
14%
constant
9%
define
72%
const
5%
static
What are assignment operator ?
Anonymous Quiz
59%
=
9%
& , || , !=
21%
< , > <= , >=
12%
+ , - , * / , %
Which operator can be overloaded in C?
Anonymous Quiz
16%
+
35%
++
20%
==
29%
None
πŸ‘3
Which of the following function declarations is invalid in C?
Anonymous Quiz
24%
int func();
19%
int func(int, char);
24%
int func(int a, b);
34%
int func(void);
Who is the father of C language?
Anonymous Poll
6%
Steve Jobs
22%
James Gosling
69%
Dennis Ritchie
3%
Rasmus Lerdorf
In C Language, which of the following is not a valid variable name declaration?
Anonymous Quiz
33%
int __3a;
17%
int __A3;
12%
int __a3;
37%
None of the mentioned
πŸŽ“βœ¨ Explore Your Future with Our Amazing Courses! βœ¨πŸŽ“

🌟 Java & Java with DSA Courses
πŸš€ CORE JAVA: NareshIT | Kishan Sir
πŸ”₯ ADVANCED JAVA: Venkatesh Mansani
πŸ–₯️ SPRING BOOT: NareshIT | Kishan Sir
βš™οΈ JAVA DSA: DurgaSoft
⭐ Sigma 5.0 Batch: Apna College
πŸ“š CORE JAVA: Hari Krishna Sir | Naresh IT
πŸ’» JAVA FULL STACK COURSE


🐍 Python & Python with DSA
🌟 Adul Bari Python
πŸ–₯️ PYTHON FULL STACK: KV Rao 2024
βš™οΈ PYTHON DSA: DurgaSoft
πŸ“š KRISH NAIK Python Course
🐍 ineuron python course
πŸ”΅ C++ & C++ with DSA
πŸ’‘ ALPHA DSA C++
πŸš€ PW C++ DSA
πŸ”₯ Love Babbar Supreme Batch
πŸ“˜ DSA Abdul Bari
βœ… NARESH IT DSA
😱 Durgasoft DSA
🀑 Ashok IT


🌐 Web Development
🎨 PW Skills Web Development
⭐ Delta 5.0 Batch: Apna College
πŸ’» DOT Batch: Love Babbar
🌈 Namaste React
πŸ“œ Namaste JavaScript
βš™οΈ Namaste NodeJs
🌟 Cohort 3.0: Web + DevOps
πŸ”§ Full Stack Web Development: Naresh IT & DurgaSoft
πŸš€ Sanket Singh Full Stack Web Development
πŸ”— NodeJS: Sanket Singh
🌟 MERN Stack: Anuj Bhaiya
πŸ–₯️ PHP: Ram Sir
🎨 Frontend Development: IIT Madras
πŸ“š Almabetter Full Stack Web Development Course
⚑ ASHOK IT Node JS
⭐ UI Full Stack: Sudhakar Sharma | Naresh IT
πŸ”₯ Sherians Frontend Course
ο»Ώ
πŸ“‚ Database & SQL
πŸ“Š MongoDB: Durga Sir
⭐ Namaste SQL: Akshay Saini
πŸ–₯️ SQL: DurgaSoft & Naresh IT
πŸ”§ ORACLE
πŸ“ˆ  Power BI Course



πŸ€– Data Science & Machine Learning
πŸš€ PW Skills Data Science Course
πŸ“Š iNeuron Complete Data Science
🌟 Data Science Master 2.0
πŸ“š Data Science: IIT Madras
βš™οΈ MLOps Course: Naresh IT

πŸ› οΈ DevOps & Azure
⚑ Full DevOps Course: Tech Nana
⭐ Hey DevOps 5.0
πŸ”§ Ashok IT DevOps
🌐 MS Azure DevOps Course
πŸ“Š Azure Data Engineering: Gareth | Naresh IT
☁️ Azure Cloud Mastery
πŸš€ DevOps with AWS
✨ Ineuron All Course
☁️ Google Cloud Platform: Mr. Saidul
πŸ”§ Git for DevOps: DurgaSoft
πŸ’» Special Courses

πŸ“š ASP.NET: Bangar Raju | Naresh IT
πŸ† GATE CSE Prep: PW 1500
πŸ“± App Development: Harnoor Singh
πŸ“± Android Using Kotlin: DurgaSoft
βš™οΈ Selenium: Naresh IT
πŸ€– Applied AI Full Course
πŸ’» C#: Bangar Raju
πŸ“€ Unix/Linux: Imran 2024 | Naresh IT
☁️ Salesforce: Adnan | Naresh IT
πŸ›‘οΈ Cyber Security: iNeuron
πŸ“ˆ Digital Marketing: Ramakanth | Naresh IT
πŸ’« Plus, we have:
- Colt Steele Full Stack Web Development
- StationX Full Stack Python Development
- Arpit Bhayani System Design
- Government Exam All Courses Available
- 1500 TB Mega Link Course Available
- 13 TB Google Drive Course Link
- Code with Mosh All Courses
- Andrew Tate All Courses
- Zero to Mastery All Courses

πŸ€‘ 100+ More Demanding Courses to Explore!
🀑 Order any course and get completed course in 24 hours
🌟 Price Starting at β‚Ή49!
😁 Cheapest and best course in history
😎 113+ member purchased course and 396 people in DM
✨ For more information and discounts πŸ˜‰, DM us @Myhurthearts!

πŸš€ Your journey to success starts here! 🌈
For free course - https://t.me/addlist/vnAFuK9rY6FjNjM1
πŸ‘3πŸ‘1😁1
C++ programming channel on whatsapp 😁

https://whatsapp.com/channel/0029VaTKg5h5PO0uEBUSYr34
#include <stdio.h>

int main() {
int x = 10;
int *ptr = &x;
*ptr = 20;
printf("%d\n", x);
return 0;
}
πŸ‘2
Program to swap values of two variables.
#include <iostream>

int main() {
int a=1;
int b=2;
int temp;
std::cout << "Before Swapping:\n";
std::cout << "a=" << a <<",b=" << b <<"\n";
temp = a;
a=b;
b=temp;
std::cout << "After Swapping:\n";
std::cout << "a=" << a <<",b=" << b <<"\n";
return 0;
}
πŸ‘5❀1
C & C++ PROGRAMMING
https://youtu.be/TBQrLkcK1KQ?si=9fGmOTMDKDx8w8Ht
πŸ‘†100% Ai ka use krk Music Rap Video bnaya 😁

Plz watch guys and give some response about video 😁
Program to swap values of two variables.
#include <iostream>

int main() {
int a=1;
int b=2;
int temp;
std::cout << "Before Swapping:\n";
std::cout << "a=" << a <<",b=" << b <<"\n";
temp = a;
a=b;
b=temp;
std::cout << "After Swapping:\n";
std::cout << "a=" << a <<",b=" << b <<"\n";
return 0;
}