en
Feedback
C Programming Codes

C Programming Codes

Open in Telegram

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

Show more

📈 Analytical overview of Telegram channel C Programming Codes

Channel C Programming Codes (@c_programming_codes) in the English language segment is an active participant. Currently, the community unites 13 363 subscribers, ranking 9 558 in the Technologies & Applications category and 31 699 in the India region.

📊 Audience metrics and dynamics

Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 13 363 subscribers.

According to the latest data from 20 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -219 over the last 30 days and by -4 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 9.82%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 0 views. Within the first day, a publication typically gains 0 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 0.
  • Thematic interests: Content is focused on key topics such as input, string, scanf("%d, array, element.

📝 Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
C Programming Codes || Quizzes || DSA Learn along with the community Any queries admin - @Pradeep_saii

Thanks to the high frequency of updates (latest data received on 21 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.

13 363
Subscribers
-424 hours
-557 days
-21930 days
Posts Archive
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