ar
Feedback
C Programming Codes

C Programming Codes

الذهاب إلى القناة على Telegram

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

إظهار المزيد

📈 نظرة تحليلية على قناة تيليجرام C Programming Codes

تُعد قناة C Programming Codes (@c_programming_codes) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 13 370 مشتركاً، محتلاً المرتبة 9 567 في فئة التكنولوجيات والتطبيقات والمرتبة 31 797 في منطقة الهند.

📊 مؤشرات الجمهور والحراك

منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 13 370 مشتركاً.

بحسب آخر البيانات بتاريخ 18 يونيو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار -226، وفي آخر 24 ساعة بمقدار -3، مع بقاء الوصول العام مرتفعاً.

  • حالة التحقق: غير موثّقة
  • معدل التفاعل (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

بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 19 يونيو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.

13 370
المشتركون
-324 ساعات
-567 أيام
-22630 أيام
أرشيف المشاركات
Requesting Everyone to join the above group ☝️

☝️☝️☝️☝️☝️☝️ join the above group and explore your skill in programming

Discussion Group for c programming 👇 https://t.me/C_programming_language_group

☝️☝️☝️☝️☝️☝️ join the above group and explore your skill in programming

join the above group and explore your skill in programming

Discussion Group for c programming 👇 https://t.me/C_programming_language_group

/* Performing sum of two numbers using , Function with arguments and with return type.*/ #include<stdio.h> int sum(int,int); int main() { int a,b,res; a=20; b=5; res=sum(a,b); printf("Sum=%d",res); return 0; } int sum(int x,int y) { int sum=0; sum=x+y; return sum; }

/* Performing sum of two numbers using , Function with arguments and without return type.*/ #include<stdio.h> void sum(int,int); int main() { int a,b; a=42; b=32; sum(a,b); return 0; } void sum(int x,int y) { int sum=0; sum=x+y; printf("Sum=%d",sum); }

/* Performing sum of two numbers using , Function with no arguments and with return type.*/ #include<stdio.h> int sum(void); int main() { int res; res=sum(); printf("Sum=%d",res); return 0; } int sum() { int a,b,sum=0; a=10; b=45; sum=a+b; return sum; }

/* Performing sum of two numbers using , Function with no arguments and without return type.*/ #include<stdio.h> void sum(void); int main() { sum(); return 0; } void sum() { int a,b,sum=0; a=4; b=9; sum=a+b; printf("sum=%d",sum); }

Wild Pointer-A wild pointer refers to a pointer that is uninitialized or has been assigned an arbitrary value that does not point to a valid memory address

// NULL pointer-NULL pointer is a special value that represents a pointer // that does not point to any valid memory address. // dereferencing of a NULL pointer can't be done. #include<stdio.h> void main() { int *ptr=NULL; if(ptr==NULL){ printf("ptr is a NULL pointer"); } else{ printf("ptr is not a NULL pointer "); } }

// void pointer- A void pointer is a special pointer type that can hold the // address of any data type. //dereferencing of void pointer can only be done after typecasting into other data type. #include<stdio.h> void main() { void *vp; int a=10; float b=5.5; char ch='b'; vp=&a; printf("%d\n",*(int*)vp); vp=&b; printf("%f\n",*(float*)vp); vp=&ch; printf("%c",*(char*)vp); }

What will be the output of above program .(Do without running) send output here👇 @c_programmerrr

#include<stdio.h> void main() { int a[]={10,11,-1,56,67,5,4}; int *p,*q; p=&a[0]; q=&a[0]+3; printf("%d,%d,%d\n",(*p)++,(*p)++,*(++p)); printf("%d\n",*p); printf("%d\n",(*p)++); printf("%d\n",(*p)++); q--; printf("%d\n",(*(q+2))--); printf("%d\n",*(p+2)-2); printf("%d\n",*(p++-2)-1); }

#include<stdio.h> void main() { int a[7]={4,8,3,6,1,2,7}; int *p=&a[0],*q; printf("%d\n",*p); //4 printf("%d,%d,%d\n",(*p)++,*p++,*++p); //3,8,8 printf("%d\n",*p); //4 q=p+3; //q is pointing to a[5] printf("%d\n",*q-3); //-1 printf("%d\n",*--p+5); //13 printf("%d\n",*p+*q); //10 }

Is This Channel Helpful to you
Anonymous voting

//Performing increment and decrement on pointer #include<stdio.h> void main() { int a[5]={5,4,6,8,3}; int *p=&a[0]; printf("Value:%d\n",*p); // Value:5 p++; // now,p is pointing to a[1] printf("Value:%d\n",*p); // Value:4 ++p; // now p is pointing to a[2] printf("Value:%d\n",*p); // value:6 p--; // now p is pointing to a[1] printf("Value:%d\n",*p); // value:4 --p; // now p is pointing to a[0] printf("Value:%d\n",*p); // Value:5 }