#include #include #include struct computerscientist { int instution; int country; int region; int world; char highestmedal; // it could be G: gold, S: silver, B: bronze char name[80]; char country_name[80]; char instution_name[80]; char subject[80]; float totalh; float last6h; float last6_totalh; float totali10; float last6i10; float last6_totali10; float totalcitation; float last6citation; float last6_totalcitation; }; struct computerscientist s1 = {1,2,2,6,'G',strcpy(s1.name,"Robert Langer"),strcpy(s1.country_name,"United States"),strcpy(s1.instution_name,"Massachusetts Institute of Technology"),strcpy(s1.subject,"Engineering Technology and Bioengineering"),321.0,165.0,0.514,1.877,1.282,0.683,420.615,126.587,0.301};; int main() { printf("Hello world!\n"); return 0; }