tgindex

C language basic to Advance

описание

@bca_mca_btech

1 922
подписчиков
Охват к подписчикам
131,7%
ERR
Реакции к просмотрам
0,09%
45 на 20 постов
Пересылки к просмотрам
0,11%
56
Постов в день
0,0
всего 20

Где отзываются чаще

доля реакций к просмотрам
  • 1 окт. 2025 г.Arduino coding Project for C programmers @C_Codes_pro0,32%
  • 9 авг. 2024 г.// 19. Print all Armstrong numbers between 1 and 1000 using a for loop: #include <stdio.h> #include <math.h> int main() { int num, originalNum, remainder, result, n; printf("Armstrong numbers between 1 and 1000 are:\n"); for(num = 1; num <= 1000; num++) { originalNum = num; result = 0; n = log10(num) + 1; while(originalNum != 0) { remainder = originalNum % 10; result += pow(remainder, n); originalNum /= 10; } if(result == num) { printf("%d\n", num); } } return 0; }0,24%
  • 15 авг. 2024 г.आप सभी को स्वतंत्रता दिवस की हार्दिक बधाई 🇮🇳🇮🇳0,20%
  • 29 авг. 2024 г.In these days rust is getting much popular 1) Because of it's speed of execution. 2) It's full controll on system memory 3) it's ownership model 4) And integration to other languages So why wait let's join our rust channel https://t.me/Rust_Codes_Pro0,19%
  • 23 мар. 2025 г.Jinke pass bhi Groups hain 10 members se 250 members tak ke vo mujhe de sakte hain (Only telegram groups no newly created) And don't comment here directly message me Minimum Price 50 rupye maximum price can be 100 vary based on group And in special group case it will be more @Panditsiddharth Or Call 63896806220,16%
  • 12 сент. 2025 г.Join @LogicBots For Getting Updates of our bots Sujjestion for new bot Sujjestion for new features https://t.me/logicBots0,15%
  • 19 июн. 2025 г.Ai telegram chatbot creation project https://youtu.be/s6EQACzmLII?si=pnDL8IdAPC7HSlJl0,10%
  • 9 авг. 2024 г.// 18. Find the LCM of two numbers using a while loop: #include <stdio.h> int main() { int a, b, max; printf("Enter two numbers: "); scanf("%d %d", &a, &b); max = (a > b) ? a : b; while(1) { if(max % a == 0 && max % b == 0) { printf("LCM is: %d\n", max); break; } max++; } return 0; }0,09%
  • 13 авг. 2024 г.Become Termux Expert in Hindi Series Video No.: 7 | Change Termux Permission https://youtu.be/53b40lkce3s0,08%
  • 13 сент. 2025 г.// Prints Current Time of India #include <stdio.h> #include <time.h> int main() { time_t rawtime; struct tm *utc, ist; // Get current time in seconds since Epoch time(&rawtime); // Convert to UTC utc = gmtime(&rawtime); // Add 5 hours 30 minutes to UTC → IST ist = *utc; ist.tm_hour += 5; ist.tm_min += 30; // Normalize (handle overflow like 24+ hours, 60+ minutes) mktime(&ist); printf("Indian Standard Time (IST): %02d:%02d:%02d\n", ist.tm_hour, ist.tm_min, ist.tm_sec); printf("Date: %02d-%02d-%04d\n", ist.tm_mday, ist.tm_mon + 1, ist.tm_year + 1900); return 0; } // Run On @C_Group_Pro // Output: t.me/C_Group_Pro/26830,07%
  • 8 июн. 2025 г.We have started new Channel. Is channels me aapko 8000 se lekar 1lack+ salary ke jobs achive karne ke liye kya skills required hoti hain unke bare me batayenge. Kya kya jaroori hota hai cv, experience, education and knowledge se lekar bahut kuchh Har ek field jaise accounting, Software development se lekar Har tarah ke work ki skills. To wait karne ki bajay join karlo👇 @NaukriSkills0,05%
  • 9 авг. 2024 г.// 16. Convert a binary number to decimal using a while loop: #include <stdio.h> #include <math.h> int main() { int binary, decimal = 0, base = 1, rem; printf("Enter a binary number: "); scanf("%d", &binary); while(binary > 0) { rem = binary % 10; decimal = decimal + rem * base; binary = binary / 10; base = base * 2; } printf("Decimal representation: %d\n", decimal); return 0; }0,05%