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
How telegram usase bot api server || telegram bot communication | bot de...
https://youtube.com/watch?v=4rQag9NBtEQ&si=fClSDb4bENQ_wUgE
Full Playlist: Click Here
https://youtube.com/watch?v=4rQag9NBtEQ&si=fClSDb4bENQ_wUgE
Full Playlist: Click Here
YouTube
How telegram usase bot api server || telegram bot communication | bot development series #4
In this video, I exaplained You basic flow of data/message in telegram. I exaplained about how telegram send or get any message from those clients like mobile apps or bot api servers.
Keys:
What is telegram,How telegram bot api works,How telegram works…
Keys:
What is telegram,How telegram bot api works,How telegram works…
Telegram bot me kis kis tarah ke events updates aate hain full info video no 5
https://youtu.be/0Oa-CdlCT9s
Playlist: Click Here
https://youtu.be/0Oa-CdlCT9s
Playlist: Click Here
YouTube
Telegram bot updates || Telegram bot events || Telegram node js bot development by Telegraf #5
In this video, I exaplained You about which events occurs when we send message in telegram. I described many telegram events/updates in this video.
Keys:
Telegram events kya hote hain,Telegram me updates kya hote hain,Telegram bot api me updates kaise dikhte…
Keys:
Telegram events kya hote hain,Telegram me updates kya hote hain,Telegram bot api me updates kaise dikhte…
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.
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
Create own advanced realtime io compiler bot on telegram See full tutorial:
https://telegram.me/logicBots/226
All coding channels:
https://t.me/addlist/hiZsuZYwYzJmMWQ1
https://telegram.me/logicBots/226
All coding channels:
https://t.me/addlist/hiZsuZYwYzJmMWQ1
Telegram
Logic Bots latest Updates
IOCompiler core latest version
Version: 3.2.2
VersionNo: 22
Github:
https://Github.com/Panditsiddharth/compilers
NPMjs
https://npmjs.com/Panditsiddharth/iocompiler
How to Create Our own compiler bot for Telegram?
Step1: First we create our bot on telegram…
Version: 3.2.2
VersionNo: 22
Github:
https://Github.com/Panditsiddharth/compilers
NPMjs
https://npmjs.com/Panditsiddharth/iocompiler
How to Create Our own compiler bot for Telegram?
Step1: First we create our bot on telegram…
Create any compiler and run on your own compiler any code
https://youtu.be/4EE-D341z6c
https://youtu.be/4EE-D341z6c
YouTube
Create any Compiler with realtime inputs || iocompiler library for Compiler bot
Create Node js Compiler with realtime inputs || iocompiler library for Compiler bot
Overview:
In this video, I exaplained You about how to create Compiler bot easily by iocompiler library then you can run js, python, c/c++, go rust codes, sh and powershell…
Overview:
In this video, I exaplained You about how to create Compiler bot easily by iocompiler library then you can run js, python, c/c++, go rust codes, sh and powershell…
// 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
// 8. Find the largest element in an array using a for loop:
#include <stdio.h>
int main() {
int n;
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]);
}
int largest = arr[0];
for(int i = 1; i < n; i++) {
if(arr[i] > largest) {
largest = arr[i];
}
}
printf("The largest element in the array is: %d\n", largest);
return 0;
}
// 9. Find the smallest element in an array using a for loop:
#include <stdio.h>
int main() {
int n;
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]);
}
int smallest = arr[0];
for(int i = 1; i < n; i++) {
if(arr[i] < smallest) {
smallest = arr[i];
}
}
printf("The smallest element in the array is: %d\n", smallest);
return 0;
}
// 10. Reverse an array using a for loop:
#include <stdio.h>
int main() {
int n;
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]);
}
printf("Reversed array:\n");
for(int i = n-1; i >= 0; i--) {
printf("%d ", arr[i]);
}
printf("\n");
return 0;
}
👍2
// 11. Sort an array in ascending order using a for loop:
#include <stdio.h>
int main() {
int n;
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-1; i++) {
for(int j = i+1; j < n; j++) {
if(arr[i] > arr[j]) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
printf("Array in ascending order:\n");
for(int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
printf("\n");
return 0;
}
❤1
// 12. Sort an array in descending order using a for loop:
#include <stdio.h>
int main() {
int n;
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-1; i++) {
for(int j = i+1; j < n; j++) {
if(arr[i] < arr[j]) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
printf("Array in descending order:\n");
for(int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
printf("\n");
return 0;
}
❤1