C Programming Codes
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 433 subscribers, ranking 9 525 in the Technologies & Applications category and 32 112 in the India region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 13 433 subscribers.
According to the latest data from 10 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -232 over the last 30 days and by -3 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 9.77%. 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 11 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.
#include<stdio.h>
#include<math.h>
int main()
{
float x1,y1,x2,y2,distance;
printf("Enter point 1 coordinates(x1,y1):");
scanf("%f %f",&x1,&y1);
printf("Enter point 2 coordinates(x2,y2):");
scanf("%f %f",&x2,&y2);
distance = sqrt( pow(x2-x1,2) + pow(y2 - y1,2));
printf("Distance between two points is:%.2f",distance);
return 0;
}#include<stdio.h>
#include<math.h>
int main()
{
int prinicipalAmt,years;
float rate,amount,compoundInterest;
printf("Enter Pricipal Amount:");
scanf("%d",&prinicipalAmt);
printf("Enter Time (in years):");
scanf("%d",&years);
printf("Enter rate:");
scanf("%f",&rate);
amount= prinicipalAmt * pow(( 1 + rate / 100.0 ),years);
compoundInterest = amount - prinicipalAmt;
printf("Compound Interest: %.2f\n",compoundInterest);
printf("Total Amount: %.2f",amount);
return 0;
}#include <stdio.h>
int main() {
int a=10,b=20;
printf("Before Swapping:\n");
printf("a=%d ,b=%d\n",a,b);
a = a + b;
b = a - b;
a = a - b;
printf("After Swapping:\n");
printf("a=%d ,b=%d",a,b);
return 0;
}#include <stdio.h>
int main() {
int a, b, temp;
a = 10, b = 20;
printf("Before swapping:\n");
printf("a = %d , b = %d", a, b);
temp = a;
a = b;
b = temp;
printf("\nAfter swapping:\n");
printf("a = %d , b = %d", a, b);
return 0;
}#include <stdio.h>
int main() {
int number, cube, square;
printf("Enter any number:");
scanf("%d", &number);
square = number * number;
cube = number * number * number;
printf("Square of %d is : %d", number, square);
printf("\nCube of %d is : %d", number, cube);
return 0;
}#include <stdio.h>
int main() {
float celsius, fahrenheit;
printf("Enter temperature in celsius:");
scanf("%f", &celsius);
fahrenheit = (celsius * 9 / 5.0) + 32;
printf("Celsius %.2f converted to Fahrenheit is : %.2f", celsius, fahrenheit);
return 0;
}#include <stdio.h>
#define PI 3.14
int main() {
float radius, area;
printf("Enter radius of the circle");
scanf("%f", &radius);
area = PI * radius * radius;
printf("Area of circle is : %.2f", area);
return 0;
}#include <stdio.h>
int main() {
float principalAmount, time, rate, simpleInterest;
printf("Enter Principal Amount:");
scanf("%f", &principalAmount);
printf("Enter Time:");
scanf("%f", &time);
printf("Enter Rate of Interest:");
scanf("%f", &rate);
simpleInterest = (principalAmount * rate * time) / 100;
printf("Simple interest is : %.2f", simpleInterest);
return 0;
}#include <stdio.h>
int main() {
int number;
printf("Enter any number");
scanf("%d", &number);
int unitDigit = number % 10;
printf("Unit digit of %d is %d", number, unitDigit);
return 0;
}#include <stdio.h>
int main() {
float firstNum, secondNum, thirdNum, average;
printf("Enter three numbers:");
scanf("%f %f %f", &firstNum, &secondNum, &thirdNum);
average = (firstNum + secondNum + thirdNum) / 3;
printf("Average of %f , %f and %f is : %f", firstNum, secondNum, thirdNum, average);
return 0;
}#include <stdio.h>
int main() {
int firstNum, secondNum, result;
printf("Enter first number:");
scanf("%d", &firstNum);
printf("Enter second number:");
scanf("%d", &secondNum);
result = firstNum + secondNum;
printf("Sum of %d and %d is : %d", firstNum, secondNum, result);
return 0;
}
Available now! Telegram Research 2025 — the year's key insights 
