C language basic to Advance
2K subscribers
16 photos
2 videos
69 links
Download Telegram
━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  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
👍21
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
#include <stdio.h>

int main() {
printf("%d\n", 0.1 + 0.2 == 0.3);
printf("%d\n", 0.1 + 0.3 == 0.4);

return 0;
}

// 0 = false, 1 = true
👍1
What will be result of upper code ?
Anonymous Quiz
43%
1 1
34%
0 1
19%
0 0
5%
1 0
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:
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😁1
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...
👍1🍌1
For websites developers help

Channel
@react_next_js

Group
@reactjs_nextjs_group
Forwarded from IGNOU Info Guidance update news (Si͟d शर्मा)
Kaun jeetega?
Anonymous Poll
62%
BJP(NDA)
38%
Congress(INDI)
🤡5👍1
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
Government ne google ki dadagiri ko khatm karne ke liye apna khud ka app store banaya hai 🔥😍

Playstore pe jo apps hain unhe 30% Playstore ko apni kamayi ka hissa dena padta hai

https://apps.mgov.gov.in/details?appid=270

Aap sabhi ye government playstore ko download kare Aur logo ko bhi share Kare

Government ne to apna Kam Kar diya ab hamari Bari.
👍2
// 1. Print all even numbers between 1 and 100 using a for loop:

#include <stdio.h>

int main() {
for(int i = 1; i <= 100; i++) {
if(i % 2 == 0) {
printf("%d\n", i);
}
}
return 0;
}
👍5
// 2. Calculate the sum of all odd numbers between 1 and 50 using a while loop:

#include <stdio.h>

int main() {
int sum = 0, i = 1;
while(i <= 50) {
if(i % 2 != 0) {
sum += i;
}
i++;
}
printf("Sum of all odd numbers between 1 and 50 is: %d\n", sum);
return 0;
}