اكتب برنامج بلغة C لإظهار استخدام المؤشر في ال structure

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

اكتب برنامج بلغة C لإظهار استخدام المؤشر في ال structure

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

 Pointer : Show the usage of pointer to structure :
--------------------------------------------------------
 John Alter from Court Street

 

الأجوبة

/*Write a program in C to show the usage of pointer to structure*/

#include <stdio.h>
struct EmpAddress
{
char *ename;
char stname[20];
int pincode;
}
employee={"John Alter","Court Street \n",654134},*pt=&employee;

int main()
{
 	printf("\n\n Pointer : Show the usage of pointer to structure :\n"); 
	printf("--------------------------------------------------------\n");
	printf(" %s from %s \n\n",pt->ename,(*pt).stname);
	return 0;
}
هل كان المحتوى مفيد؟

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

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