Make your 30 numbers final in c/c++ 👇
https://t.me/C_Codes_pro/254
All that program can be converted in c++ just replacing
stdio.h to iostream
And
printf to std::cout
https://t.me/C_Codes_pro/254
All that program can be converted in c++ just replacing
stdio.h to iostream
And
printf to std::cout
👍1
Now it's discussion group is public
Join @Cpp_group_pro
Join @Cpp_group_pro
Select your group/channel/service
t.me/Sid_info/69
t.me/Sid_info/69
// Check leap year
#include <iostream>
bool isLeapYear(int year) {
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
return true;
} else {
return false;
}
}
int main() {
int year;
std::cout << "Enter a year: ";
std::cin >> year;
if (isLeapYear(year)) {
std::cout << year << " is a leap year." << std::endl;
} else {
std::cout << year << " is not a leap year." << std::endl;
}
return 0;
}
👍3
// multiple numbers adder
#include<iostream>
using namespace std;
class Adder{
public:
int num[100];
int n=0;
void entNum(void);
void numShow(void);
void printCal(void);
};
void Adder::entNum(void){
int i=0;
char c;
for(;i<50;i++){
cout<<"Enter "<<i+1<<"s number : ";
cin>>num[i];
n++;
if(i<1)
continue;
cout<<"Are you want add more type y or n ";
cin>>c;
if(c=='n')
break;
} }
void Adder::numShow(void){
cout<<"\n\nYou entered ";
for(int i=0;i<n;i++){
cout<<num[i]<<" ";
}}
void Adder::printCal(void){
int i=0;
int res=0;
for(;i<n;i++){
res=res+num[i];
}
cout<<"\nTotal = "<<res;
}
int main (){
Adder add;
cout<<"Number Adder\n"<<endl;
add.entNum();
add.numShow();
add.printCal();
return 0;
}
👍2
Create compiler bot in mobile
Run any language codes
In hindi:
Ab laptop ko kar do Tata bye bye gya 😂
https://youtu.be/352o8B9IikI?si=OSrhBU0mcFEkqILA
Run any language codes
In hindi:
Ab laptop ko kar do Tata bye bye gya 😂
https://youtu.be/352o8B9IikI?si=OSrhBU0mcFEkqILA
YouTube
How to create compiler bot and run c/c++ java python node js ts from mobile as server in termux
How to create compiler bot and run c/c++ java python node js ts from mobile as server in termux
Create own compiler bot in 2 minutes
Overview:
In this video, I exaplained You about how to use clone Compiler bot to create your own compiler bot.
keys:…
Create own compiler bot in 2 minutes
Overview:
In this video, I exaplained You about how to use clone Compiler bot to create your own compiler bot.
keys:…
👍1
If you want learn js for website development 👇join it
@react_next_js
For any problems in js site development feel free to ask questions 😊👇
@reactjs_nextjs_group
@react_next_js
For any problems in js site development feel free to ask questions 😊👇
@reactjs_nextjs_group
━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Free Study Resources everything join more ✅ https://t.me/addlist/c3QWwWR-Iw4xMDNl
Subscribe Our New channel for coding, designing, hacking and computer related everything 😁
👉✅ https://youtube.com/@CODEBOMBB
━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Free Study Resources everything join more ✅ https://t.me/addlist/c3QWwWR-Iw4xMDNl
Subscribe Our New channel for coding, designing, hacking and computer related everything 😁
👉✅ https://youtube.com/@CODEBOMBB
━━━━━━━━━━━━━━━━━━━━━━━━━━━━
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
👩💻 Welcome to @CodesSnippet! 🔫
Join us for daily snippets of coding👩💻 knowledge! 💻
Here, you'll find 👀 bite-sized pieces of code, programming tips, and tricks to level up your coding skills! 💻
Stay updated on the latest trends in the tech world and engage with fellow coders 💗 in our vibrant community! 🌐💬
Let's crack the coding 👩💻 together and bring your projects to life!
⭐️👨💻
Lang : Python , Java, Javascript, c++ and many more.
#CodeSnippet
#ProgrammingFun
Jᴏɪɴ ᴜs :- @CodesSnippet
Join us for daily snippets of coding👩💻 knowledge! 💻
Here, you'll find 👀 bite-sized pieces of code, programming tips, and tricks to level up your coding skills! 💻
Stay updated on the latest trends in the tech world and engage with fellow coders 💗 in our vibrant community! 🌐💬
Let's crack the coding 👩💻 together and bring your projects to life!
⭐️👨💻
Lang : Python , Java, Javascript, c++ and many more.
#CodeSnippet
#ProgrammingFun
Jᴏɪɴ ᴜs :- @CodesSnippet
Chatting ke liye group
@isc_chat
Ab study group ke bajay is group me off topics discuss karna
Aur jo active hoga vaha use admin bana dunga
@isc_chat
Ab study group ke bajay is group me off topics discuss karna
Aur jo active hoga vaha use admin bana dunga
Node js full video
https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m
After watching it next:
Create telegram bot
Create websites
Create apis
Create apps
And so on...
Topics Covered:
Watch it first at morning 8:30 (Live)
Node js full video
https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m
https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m
After watching it next:
Create telegram bot
Create websites
Create apis
Create apps
And so on...
Topics Covered:
00:00:00 - Intro of video
00:02:26 - Introduction to node js
00:05:59 - Setup node js environment
00:07:33 - Installing Visual studio Code IDE
00:08:39 - Installing Node js
00:12:58 - Understand about node folder setup
00:15:18 - Basic function of js console.log
00:19:25 - Basic Datatypes of js (Start of basic javascript)
00:25:15 - Variables and Constant in js
00:33:45 - Js Object and List (Array)
00:53:08 - Javascript Operators
01:02:24 - if else Control statement in js
01:08:00 - while and for loops in js
01:17:01 - functions in javascript
01:21:23 - Understand asynchronous javascript
01:26:52 - Understand why async/await in js
01:31:01 - Understand js callback functions
01:36:38 - Use of built in modules in js (example: fs module)
01:40:32 - installing external libraries and fetching data (example axios)
01:48:14 - Anonymous functions in js
01:51:38 - Some of my words for why you learnt this js
Watch it first at morning 8:30 (Live)
Node js full video
https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m
👍3
Node js full video watch now live
https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m
After watching it next:
Create telegram bot
Create websites
Create apis
Create apps
And so on...
https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m
After watching it next:
Create telegram bot
Create websites
Create apis
Create apps
And so on...
Forwarded from IGNOU Info Guidance update news (Si͟d शर्मा)
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
Jo log mahangai aur berojgari bolte rahte hain unhe ye dekhna chahiye
Timestamp
00:00 - Mahangai
02:00 - Berojgari
https://youtu.be/zY1uOEDxOOU?si=e_0eTubOVxUdQdsM
Timestamp
00:00 - Mahangai
02:00 - Berojgari
https://youtu.be/zY1uOEDxOOU?si=e_0eTubOVxUdQdsM
Vakf board pta hai kya hai ?
https://youtube.com/shorts/LXTY69ihiFA?si=oacPA6X2dY4r9HCL
Ye dekho Congress ne ye Kiya tha 🤬
Ye video sabko share karo Congress ki Asli sacchai dikhao sabko
https://youtube.com/shorts/LXTY69ihiFA?si=oacPA6X2dY4r9HCL
Ye dekho Congress ne ye Kiya tha 🤬
Ye video sabko share karo Congress ki Asli sacchai dikhao sabko
YouTube
Waqf Board Case😡: आपकी जमीन पर दावा कर दे तो कोर्ट भी नहीं जा पाएंगे! #shorts
#shortsFor 70% Discount on 3D Animation Course, Click here 👉🏻 https://professorofhow.comWaqf Board Case: आपकी जमीन पर दावा कर दे तो कोर्ट भी नहीं जा पाएंगे...
Become coding expert by Codes channels and groups with Yt videos also
https://t.me/addlist/2UhsQW_cGzkxMzg1
https://t.me/addlist/2UhsQW_cGzkxMzg1
Telegram
Coding
You’ve been invited to add the folder “Coding”, which includes 26 chats.
Learn Telegram bot development using Nodejs telegraf library: https://www.youtube.com/playlist?list=PLjEYzWkdEvxvJ8lZacERw_NiUKbB7l_dx
1 more video added
Subscribe to get updates
1 more video added
Subscribe to get updates