شكراُ ..
0
لغة بايثون رائعة و قوية و سهلة بالنّسبة لغيرها من اللغات, و تعتبر اللغة الأهم في عالم معالجة البيانات لاحتوائها على الكثير من المكتبات و التوابع التي تمكّنك من القيام بأي شيئ بسهولة, و لتعلًمها أنصح بدورة مقدّمة من MIT و نخبة من كبار المبرمجين أمثال ( Eric Grimson) و (John Guttag) و هنا الرابط: https://www.edx.org/course/introduction-computer-science-mitx-6-00-1x-6 بالتوفيق أخي .....
C program to write all the members of an array of strcures to a file using fwrite(). Read the array from the file and display on the screen. #include struct s { char name[50]; int height; }; int main(){ struct s a[5],b[5]; FILE *fptr; int i; fptr=fopen("file.txt","wb"); for(i=0;i<5;++i) { fflush(stdin); printf("Enter name: "); gets(a[i].name); printf("Enter height: "); scanf("%d",&a[i].height); } fwrite(a,sizeof(a),1,fptr); fclose(fptr); fptr=fopen("file.txt","rb"); fread(b,sizeof(b),1,fptr); for(i=0;i<5;++i) { printf("Name: %s\nHeight: %d",b[i].name,b[i].height); } fclose(fptr); }