اكتب برنامج بلغة C لتخزين n من العناصر في مصفوفة وطباعة العناصر باستخدام المؤشر

  • برمجة
  • برمجة سي c

اكتب برنامج بلغة C لتخزين n من العناصر في مصفوفة وطباعة العناصر باستخدام المؤشر

الخرج المتوقع :

 Pointer : Store and retrieve elements from an array :
------------------------------------------------------------
 Input the number of elements to store in the array :5
 Input 5 number of elements in the array :
 element - 0 : 5
 element - 1 : 7
 element - 2 : 2
 element - 3 : 9
 element - 4 : 8
 The elements you entered are :
 element - 0 : 5
 element - 1 : 7
 element - 2 : 2
 element - 3 : 9
 element - 4 : 8

الأجوبة

/*Write a program in C to store n elements in an array and print the elements using pointer*/

#include <stdio.h>
int main()
{
   int arr1[25], i,n;
   printf("\n\n Pointer : Store and retrieve elements from an array :\n"); 
   printf("------------------------------------------------------------\n");    
   printf(" Input the number of elements to store in the array :");
   scanf("%d",&n);
   
   printf(" Input %d number of elements in the array :\n",n);
   for(i=0;i<n;i++)
      {
	  printf(" element - %d : ",i);
	  scanf("%d",arr1+i);
	  }
   printf(" The elements you entered are : \n");
   for(i=0;i<n;i++)
      {
	  printf(" element - %d : %d \n",i,*(arr1+i));
	  }
	   return 0;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...