C language basic to Advance
Ir al canal en Telegram
380
Suscriptores
+724 horas
+437 días
+17030 días
Carga de datos en curso...
Canales Similares
Nube de Etiquetas
Sin datos
¿Algún problema? Por favor, actualice la página o contacte a nuestro gerente de soporte.
Menciones Entrantes y Salientes
---
---
---
---
---
---
Atraer Suscriptores
diciembre '24
diciembre '24
+34
en 0 canales
noviembre '24
+41
en 0 canales
Get PRO
octubre '24
+63
en 0 canales
Get PRO
septiembre '24
+194
en 0 canales
Get PRO
agosto '24
+247
en 0 canales
Get PRO
julio '24
+99
en 0 canales
Get PRO
junio '24
+212
en 1 canales
Get PRO
mayo '24
+62
en 0 canales
Get PRO
abril '24
+108
en 0 canales
Get PRO
marzo '24
+109
en 0 canales
Get PRO
febrero '24
+124
en 0 canales
Get PRO
enero '24
+387
en 0 canales
Get PRO
diciembre '23
+264
en 2 canales
Get PRO
noviembre '23
+155
en 6 canales
Get PRO
octubre '23
+233
en 2 canales
| Fecha | Crecimiento de Suscriptores | Menciones | Canales | |
| 21 diciembre | +5 | |||
| 20 diciembre | +6 | |||
| 19 diciembre | +3 | |||
| 18 diciembre | +1 | |||
| 17 diciembre | +1 | |||
| 16 diciembre | +5 | |||
| 15 diciembre | 0 | |||
| 14 diciembre | 0 | |||
| 13 diciembre | 0 | |||
| 12 diciembre | 0 | |||
| 11 diciembre | 0 | |||
| 10 diciembre | 0 | |||
| 09 diciembre | 0 | |||
| 08 diciembre | +8 | |||
| 07 diciembre | +1 | |||
| 06 diciembre | +1 | |||
| 05 diciembre | 0 | |||
| 04 diciembre | +2 | |||
| 03 diciembre | +1 | |||
| 02 diciembre | 0 | |||
| 01 diciembre | 0 |
Publicaciones del Canal
Ab aap log apna khud ka Compiler bot bana sakte hain easily 🥳🥳🔥
Apne manpasand name aur username se
Create your own
By using @CloneCompiler_bot
See full details: Click Here
| 2 | // Decimal to Hexadecimal By C
#include<stdio.h>
int main()
{
int rem,num,i=1,j;
char Hexa[50];
printf("Enter Decimal no: ");
scanf("%d", &num);
if(num!=0){
while(num!=0){
rem = num % 16;
if(rem<10)
rem=rem+48;
else
rem=rem+55;
Hexa[i++]=rem;
num=num/16;
}}
else{
printf("0");
}
printf("\nHexadecimal Number is ");
for(j=i;0<j;j--){
printf("%c",Hexa[j]);
}
return 0;
} // @C_Codes_pro | 141 |
| 3 | /cc
// Decimal to Hexadecimal By C
#include<stdio.h>
int main()
{
int rem,num,i=1,j;
char Hexa[50];
printf("Enter Decimal no: ");
scanf("%d", &num);
if(num!=0){
while(num!=0){
rem = num % 16;
if(rem<10)
rem=rem+48;
else
rem=rem+55;
Hexa[i++]=rem;
num=num/16;
}}
else{
printf("0");
}
printf("\nHexadecimal Number is ");
for(j=i;0<j;j--){
printf("%c",Hexa[j]);
}
return 0;
} // @C_Codes_pro | 1 |
| 4 | Learn in 55 seconds
How to run codes in telegram 👇
https://t.me/logicBots/163 | 128 |
| 5 | Give code sujjestion here 👇 | 154 |
| 6 | //To check leap year
#include<stdio.h>
int main() {
int year;
printf("Enter a year that you want to check:");
scanf("%d",&year);
if((year%4==0 &&year%100!=0) ||( year%400==0))
printf("%d is a leap year",year);
else
printf("%d is not a leap year",year);
return 0;
} | 156 |
| 7 | /cc //To check leap year
#include<stdio.h>
int main() {
int year;
printf("Enter a year that you want to check:");
scanf("%d",&year);
if((year%4==0 &&year%100!=0) ||( year%400==0))
printf("%d is a leap year",year);
else
printf("%d is not a leap year",year);
return 0;
} | 1 |
| 8 | // Dowhile loop to ask user for input until a valid number is entered:
#include <stdio.h>
int main() {
int num;
do {
printf("Enter a number between 1 and 10: ");
scanf("%d", &num);
} while(num < 1 || num > 10);
printf("You entered: %d", num);
return 0;
} | 143 |
| 9 | /cc
// Dowhile loop to ask user for input until a valid number is entered:
#include <stdio.h>
int main() {
int num;
do {
printf("Enter a number between 1 and 10: ");
scanf("%d", &num);
} while(num < 1 || num > 10);
printf("You entered: %d", num);
return 0;
} | 1 |
| 10 | /cc // Do-while loop to ask user for input until a valid number is entered:
#include <stdio.h>
int main() {
int num;
do {
printf("Enter a number between 1 and 10: ");
scanf("%d", &num);
} while(num < 1 || num > 10);
printf("You entered: %d", num);
return 0;
} | 1 |
| 11 | /cc
// Do-while loop to ask user for input until a valid number is entered:
#include <stdio.h>
int main() {
int num;
do {
printf("Enter a number between 1 and 10: ");
scanf("%d", &num);
} while(num < 1 || num > 10);
printf("You entered: %d", num);
return 0;
} | 1 |
| 12 | 20 Questions on C loops:
`1. Write a C program to print all even numbers between 1 and 100 using a for loop.
2. Write a C program to calculate the sum of all odd numbers between 1 and 50 using a while loop.
3. Write a C program to print the multiplication table of a given number using a for loop.
4. Write a C program to find the factorial of a given number using a for loop.
5. Write a C program to check if a given number is prime or not using a for loop.
6. Write a C program to print the Fibonacci series up to a given number using a for loop.
7. Write a C program to find the sum of all elements in an array using a for loop.
8. Write a C program to find the largest element in an array using a for loop.
9. Write a C program to find the smallest element in an array using a for loop.
10. Write a C program to reverse an array using a for loop.
11. Write a C program to sort an array in ascending order using a for loop.
12. Write a C program to sort an array in descending order using a for loop.
13. Write a C program to find the sum of the digits of a given number using a while loop.
14. Write a C program to check if a given number is a palindrome or not using a while loop.
15. Write a C program to convert a decimal number to binary using a while loop.
16. Write a C program to convert a binary number to decimal using a while loop.
17. Write a C program to find the GCD of two numbers using a while loop.
18. Write a C program to find the LCM of two numbers using a while loop.
19. Write a C program to print all Armstrong numbers between 1 and 1000 using a for loop.
20. Write a C program to print all perfect numbers between 1 and 1000 using a for loop.` | 134 |
| 13 | // Recursion in C involves a function calling itself directly or indirectly. Here's an example of a recursive function in C:
#include <stdio.h>
void countdown(int n) {
if (n > 0) {
printf("%d ", n); // Print the current number
countdown(n - 1); // Call the function itself with a smaller number
}
}
int main() {
int num = 5;
countdown(num);
return 0;
} | 145 |
| 14 | /cc // Recursion in C involves a function calling itself directly or indirectly. Here's an example of a recursive function in C:
#include <stdio.h>
void countdown(int n) {
if (n > 0) {
printf("%d ", n); // Print the current number
countdown(n - 1); // Call the function itself with a smaller number
}
}
int main() {
int num = 5;
countdown(num);
return 0;
} | 1 |
| 15 | इस बाॅट में कोड रन करना सीखें।
Learn how to run code in this bot.
लाभ (Advantage):
आप किसी को भी रियल टाइम में कोड का आउटपुट दिखा सकते हो, जिससे अगर आपके कोड में कोई गलती है तो वह भी सरलता से एक दूसरे से डिस्कस करके साॅल्व कर सकते हो।
See features written in pic ☝️☝️
You can show the output of the code to anyone in real time, so that if there is any mistake in your code, they can easily solve it by discussing with each other.
Full tutorial: https://t.me/logicBots/147 | 183 |
| 16 | //To check leap year
#include<stdio.h>
int main() {
int year;
printf("Enter a year that you want to check:");
scanf("%d",&year);
if((year%4==0 &&year%100!=0) ||( year%400==0))
printf("%d is a leap year",year);
else
printf("%d is not a leap year",year);
return 0;
} | 188 |
| 17 | /cc
//To check leap year
#include<stdio.h>
int main() {
int year;
printf("Enter a year that you want to check:");
scanf("%d",&year);
if((year%4==0 &&year%100!=0) ||( year%400==0))
printf("%d is a leap year",year);
else
printf("%d is not a leap year",year);
return 0;
} | 1 |
| 18 | // Check Number
#include <stdio.h>
int main() {
int num;
printf("Enter Number: ");
scanf("%d", &num);
if(num>0){
printf("This Number is positive");
}
else if(num<0){
printf("This Number is negetive");
}
else if(num == 0){
printf("This Number is zero");
}
return 0;
} | 228 |
| 19 | /cc
// Check Number
#include <stdio.h>
int main() {
int num;
printf("Enter Number: ");
scanf("%d", &num);
if(num>0){
printf("This Number is positive");
}
else if(num<0){
printf("This Number is negetive");
}
else if(num == 0){
printf("This Number is zero");
}
return 0;
} | 1 |
| 20 | Notes 📝 :
Telegram.me/BCA_Sem1_Notes
Telegram.me/BCA_Sem2_Notes
Telegram.me/BCA_Sem3_Notes
Telegram.me/BCA_Sem4_Notes
Telegram.me/BCA_Sem5_Notes
Telegram.me/BCA_Sem6_Notes
Code practice Channels:
Telegram.me/C_Codes_pro
Telegram.me/CPP_Codes_pro
Telegram.me/Python_Codes_pro
Telegram.me/Java_Codes_Pro
Telegram.me/Nodejs_Codes_Pro
Info channel:
Telegram.me/Btech_bca_mca
Discussion groups:
Telegram.me/bca_mca_btech
Telegram.me/bca_group_ignou
Learn coding:
Youtube.com/IgnouStudyCenter | 220 |
