ch
Feedback
C Programming Codes

C Programming Codes

前往频道在 Telegram

C Programming Codes || Quizzes || DSA Learn along with the community Any queries admin - @Pradeep_saii

显示更多

📈 Telegram 频道 C Programming Codes 的分析概览

频道 C Programming Codes (@c_programming_codes) 英语 语言赛道中的 是活跃参与者。目前社区聚集了 13 363 名订阅者,在 技术与应用 类别中位列第 9 558,并在 印度 地区排名第 31 699

📊 受众指标与增长动态

невідомо 创建以来,项目保持高速增长,吸引了 13 363 名订阅者。

根据 20 六月, 2026 的最新数据,频道保持稳定运转。过去 30 天订阅人数变化为 -219,过去 24 小时变化为 -4,整体触达仍然可观。

  • 认证状态: 未认证
  • 互动率 (ER): 平均受众互动率为 9.82%。内容发布后 24 小时内通常能获得 N/A% 的反应,占订阅者总量。
  • 帖子覆盖: 每篇帖子平均可获得 0 次浏览,首日通常累积 0 次浏览。
  • 互动与反馈: 受众积极参与,单帖平均反应数为 0
  • 主题关注点: 内容集中在 input, string, scanf("%d, array, element 等核心主题上。

📝 描述与内容策略

作者将该频道定位为表达主观观点的平台:
C Programming Codes || Quizzes || DSA Learn along with the community Any queries admin - @Pradeep_saii

凭借高频更新(最新数据采集于 21 六月, 2026),频道始终保持新鲜度与高覆盖。分析显示受众积极互动,使其成为 技术与应用 类别中的关键影响点。

13 363
订阅者
-424 小时
-557
-21930
帖子存档
program is written below 👇
+1
program is written below 👇

Program to accept three numbers and print them in ascending and descending order ------------------------------------ Program: #include<stdio.h>   #include<math.h>   int main()   { int a,b,c;     printf("Enter three numbers:");     scanf("%d %d %d",&a,&b,&c);     printf("Entered numbers are %d,%d,%d",a,b,c);     printf("\n--------------------------------");     if (a>=b && a>=c)    {  if (b>=c){        printf("\nDescending order : %d,%d,%d",a,b,c);        printf("\nAscending order : %d,%d,%d",c,b,a);       }      else{        printf("\nDescending order : %d,%d,%d",a,c,b);        printf("\nAscending order : %d,%d,%d",b,c,a);      }    }    else if (b>=a && b>=c) {      if (a>=c){         printf("\nDescending order: %d,%d,%d",b,a,c);         printf("\nAscending order: %d,%d,%d",c,a,b);      }    }     else{      if (b>=a){       printf("\nDescending order : %d,%d,%d",c,b,a);       printf("\nAscending order : %d,%d,%d",a,b,c);      }      else {       printf("\nDescending order : %d,%d,%d",c,a,b);       printf("\nAscending order : %d,%d,%d",b,a,c);      }    }    return 0;   } ---------------------------------------- #else_if

Program to accept three numbers and print them in ascending and descending order ------------------------------------ Program: #include<stdio.h> #include<math.h> int main() { int a,b,c; printf("Enter three numbers:"); scanf("%d %d %d",&a,&b,&c); printf("Entered numbers are %d,%d,%d",a,b,c); printf("\n--------------------------------"); if (a>=b && a>=c) { if (b>=c){ printf("\nDescending order : %d,%d,%d",a,b,c); printf("\nAscending order : %d,%d,%d",c,b,a); } else{ printf("\nDescending order : %d,%d,%d",a,c,b); printf("\nAscending order : %d,%d,%d",b,c,a); } } else if (b>=a && b>=c) { if (a>=c){ printf("\nDescending order: %d,%d,%d",b,a,c); printf("\nAscending order: %d,%d,%d",c,a,b); } } else{ if (b>=a){ printf("\nDescending order : %d,%d,%d",c,b,a); printf("\nAscending order : %d,%d,%d",a,b,c); } else { printf("\nDescending order : %d,%d,%d",c,a,b); printf("\nAscending order : %d,%d,%d",b,a,c); } } return 0; } ---------------------------------------- #if_else_if

//Program to find roots of a quadratic equation #include #include int main() { int a,b,c; float D,denom,r1,r2; printf("Enter
+1
//Program to find roots of a quadratic equation #include<stdio.h> #include<math.h> int main() { int a,b,c; float D,denom,r1,r2; printf("Enter the values of a,b,c:"); scanf("%d%d%d",&a,&b,&c); D=(b*b)-(4*a*c); denom=2*a; if(D>0) {r1=(-b+sqrt(D))/denom; r2=(-b-sqrt(D))/denom; printf("Real roots with,\n Root 1=%.2f\n Root 2=%.2f",r1,r2); } else if(D==0) {r1=-b/denom; r2=-b/denom; printf("Equal roots with,\n Root 1=%.2f\n Root 2=%.2f",r1,r2); } else { r1=-b/denom; r2=sqrt(-D)/denom; printf("Imaginary Roots with,\n"); printf("Root 1=%.2f+%.2fi\n",r1,r2); printf("Root 2=%.2f-%.2fi",r1,r2); } return 0; } #if_else_if @cprogrammerrr

Is this channel helpful to you
Anonymous voting

Program to read the marks of a student in 4 subjects(100M) and display todal marks, percentage and grade --------------------
+1
Program to read the marks of a student in 4 subjects(100M) and display todal marks, percentage and grade --------------------------------------------- Program: #include <stdio.h> int main() { int maths, physics, chemistry, electronics, total; printf("Enter marks in Maths: "); scanf("%d", &maths); printf("Enter marks in Physics: "); scanf("%d", &physics); printf("Enter marks in Chemistry: "); scanf("%d", &chemistry); printf("Enter marks in Electronics: "); scanf("%d", &electronics); total = maths + physics + chemistry + electronics; float percentage = (total / 400.0) * 100; char grade; if (percentage >= 90){ grade = 'A'; } else if (percentage >= 80) { grade = 'B'; } else if (percentage >= 70) { grade = 'C'; } else if (percentage >= 60) { grade = 'D'; } else { grade = 'F'; } printf("Total marks: %d\n", total); printf("Percentage: %.2f\n", percentage); printf("Grade: %c\n", grade); return 0; } -----------------------------------------------

Program to print largest among three using if else if ---------------------------------------------------- Program: #include
+1
Program to print largest among three using if else if ---------------------------------------------------- Program: #include <stdio.h> int main() {int num1, num2, num3; printf("Enter three numbers: "); scanf("%d%d%d", &num1, &num2, &num3); if (num1 >= num2 && num1 >= num3) { printf("%d is the largest number.\n", num1); } else if (num2 >= num1 && num2 >= num3) { printf("%d is the largest number.\n", num2); } else { printf("%d is the largest number.\n", num3); } return 0; } ---------------------------------------------------- #if_else_if

Program to check whether entered number is positive, negative or zero using if else if statement ----------------------------
+1
Program to check whether entered number is positive, negative or zero using if else if statement ---------------------------------------------------- Program: #include<stdio.h> int main() { int num; printf("Enter a number:"); scanf("%d",&num); if(num>0) { printf("%d is a positive number",num); } else if(num==0) { printf("The entered number is equal to zero"); } else { printf("%d is a negative number",num); } return 0; } ---------------------------------------------------- #if_else_if

Program to check whether entered year is leap year or not ---------------------------------------------------- Program: #incl
+1
Program to check whether entered year is leap year or not ---------------------------------------------------- Program: #include<stdio.h> int main() { int year; printf("Enter ther year:"); 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; } ---------------------------------------------------- #if_else

HAPPY NEW YEAR MY DEAR LOVELY FRIENDS FROM YOUR LOVELY 👇👇👇👇👇👇👇👇👇👇👇👇 https://www.instagram.com/reel/Cm16gN_qTKw/?igshid=YmMyMTA2M2Y=

Program to check whether entered character is vowel or consonant ---------------------------------------------------- Program
+1
Program to check whether entered character is vowel or consonant ---------------------------------------------------- Program: #include<stdio.h> int main() {char ch; printf("Enter a character(lower case):"); scanf("%c",&ch); if(ch=='a' || ch=='e' || ch=='i' || ch=='o' || ch=='u') { printf("%c is an vowel",ch); } else { printf("%c is a consonant ",ch); } return 0; } ---------------------------------------------------- #if_else friends or (||) operator is not getting printed in above text type as in image

Program to check whether entered character is vowel or consonant ---------------------------------------------------- Program
+1
Program to check whether entered character is vowel or consonant ---------------------------------------------------- Program: #include<stdio.h> int main() {char ch; printf("Enter a character(lower case):"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("%c is an vowel",ch); } else { printf("%c is a consonant ",ch); } return 0; } ---------------------------------------------------- #if_else