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
Who is the father of C language?
Anonymous Poll
6%
Steve Jobs
22%
James Gosling
69%
Dennis Ritchie
3%
Rasmus Lerdorf
Which of the following declaration is not supported by C language?
Anonymous Quiz
26%
a) String str;
13%
b) char *str;
33%
c) float str = 3e2;
28%
d) Both “String str;” and “float str = 3e2;”
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
IND vs PAK 😁

Kaun jitega aaj
Anonymous Poll
81%
INDIA
6%
PAKISTAN
13%
Not interested 😐
#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;
}
👍51
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;
}
Program to convert temperature from Fahrenheit to Celsius.
#include <iostream>
using namespace std;
int main() {
double fahrenheitTemperature;
double temperatureInCelsius;
cout << "Enter your temperature in Fahrenheit:";
cin >> fahrenheitTemperature;
temperatureInCelsius = ((fahrenheitTemperature - 32) * 5) / 9;
cout << "Temperature in celsius : " << temperatureInCelsius;
return 0;
}
Program : To calculate factorial of a given number
cpp
#include <iostream>

using namespace std;

int main() {
int num,res=1;
cout << "Enter a positive number:" << endl;
cin >> num;
if(num < 0){
cout << "You entered a negative number" << endl;
}
else if(num == 0){
cout << "0! = " << "1";
}
else{
for(int i = 1;i <= num;i++){
res = res * i;
}
cout << "Factorial of " << num << " is "<<res;
}

return 0;
}
Program: Given an array with numbers 11,12,13,14,15 calculate the sum of elements in array using range based for loop.
cpp
#include <iostream>

using namespace std;

int main(){
int numbers[] = {11,12,13,14,15};
int sum = 0;
for(int number : numbers){
sum = sum + number;
}
cout << "Sum = "<< sum;
return 0;
}
Program : Design a number guessing game using while loop.
Take range of numbers from 1 - 10
hard code any number between 1 and 10
Ask user to guess the number after guessing display number of attempts made to guess the number.
cpp
#include <iostream>

using namespace std;

int main()
{
int numberToGuess = 4;
int attempts = 0;
int guess = 0;
while (guess != numberToGuess)
{
cout << "Guess the number between 1 and 10:" << endl;
cin >> guess;
attempts++;
if(guess == numberToGuess){
cout << "You guessed it right in " << attempts << " attempts" << endl;
}
}
cout << "Game ended";
return 0;
}
Program : Design a number guessing game using while loop.
Take range of numbers from 1 - 10
hard code any number between 1 and 10
Ask user to guess the number after guessing display number of attempts made to guess the number.
cpp
#include <iostream>

using namespace std;

int main()
{
int numberToGuess = 4;
int attempts = 0;
int guess = 0;
while (guess != numberToGuess)
{
cout << "Guess the number between 1 and 10:" << endl;
cin >> guess;
attempts++;
if(guess == numberToGuess){
cout << "You guessed it right in " << attempts << " attempts" << endl;
}
}
cout << "Game ended";
return 0;
}
4👍1
🌟 Unlock Your Career in C++ & DSA! 🌟

Are you ready to dive into the world of programming? 💻 We have the *ultimate* collection of C++ and DSA courses that can set you on the path to success! 🚀

🔵 C++ & C++ with DSA Masterclass
💡 ALPHA DSA C++ - Stand Out in the Crowd!
🚀 PW C++ DSA - Propel Your Skills!
🔥 Love Babbar Supreme Batch - Learn from the Best!
📘 DSA by Abdul Bari - Expert Guidance!
NARESH IT DSA - Proven Techniques!
😱 Durgasoft DSA - Grab Your Opportunity!
🤡 Ashok IT - Fun and Engaging Learning!

Exclusive Offer: Get Access for Only ₹100!
Originally valued at ₹10,000, this is your chance to grab it at an unbelievable 1% of the price! 💰

Don’t miss out on this incredible opportunity to enhance your skills and boost your career! 🙌

💬 Message us now at:
@Myhurthearts
@imabhi3030

🌈 Invest in your future today! 🌈
👍2