C language basic to Advance
2K subscribers
16 photos
2 videos
69 links
Download Telegram
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;
}
// 3. Print the multiplication table of a given number using a for loop:

#include <stdio.h>

int main() {
int num;
printf("Enter a number: ");
scanf("%d", &num);

for(int i = 1; i <= 10; i++) {
printf("%d x %d = %d\n", num, i, num * i);
}
return 0;
}
// 4. Find the factorial of a given number using a for loop:
#include <stdio.h>

int main() {
int num, factorial = 1;
printf("Enter a number: ");
scanf("%d", &num);

for(int i = 1; i <= num; i++) {
factorial *= i;
}
printf("Factorial of %d is: %d\n", num, factorial);
return 0;
}
👍1
// 5. Check if a given number is prime or not using a for loop:

#include <stdio.h>

int main() {
int num, isPrime = 1;
printf("Enter a number: ");
scanf("%d", &num);

if (num <= 1) {
isPrime = 0;
} else {
for(int i = 2; i <= num / 2; i++) {
if(num % i == 0) {
isPrime = 0;
break;
}
}
}

if(isPrime) {
printf("%d is a prime number.\n", num);
} else {
printf("%d is not a prime number.\n", num);
}

return 0;
}
👍3
// 6. Print the Fibonacci series up to a given number using a for loop:

#include <stdio.h>

int main() {
int n, t1 = 0, t2 = 1, nextTerm;

printf("Enter the number of terms: ");
scanf("%d", &n);

printf("Fibonacci Series: %d, %d", t1, t2);

for(int i = 3; i <= n; i++) {
nextTerm = t1 + t2;
printf(", %d", nextTerm);
t1 = t2;
t2 = nextTerm;
}
printf("\n");
return 0;
}
👍1
// 7. Find the sum of all elements in an array using a for loop:

#include <stdio.h>

int main() {
int n, sum = 0;

printf("Enter the number of elements in the array: ");
scanf("%d", &n);

int arr[n];
printf("Enter the elements of the array:\n");
for(int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}

for(int i = 0; i < n; i++) {
sum += arr[i];
}

printf("Sum of all elements in the array is: %d\n", sum);
return 0;
}
👍1