/****************************************************************************** https://www.onlinegdb.com/online_c++_compiler Online C++ Compiler. Code, Compile, Run and Debug C++ program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include <stdio.h> #include <string.h> //Pointer, Array, Struct // Local Global struct Mahasiswa{ char nama[100]; int nilai; }; int main() { Mahasiswa mhs1; strcpy(mhs1.nama, "Andi"); mhs1.nilai = 90; printf("Nama dan Nilai : %s dan %d\n", mhs1.nama, mhs1.nilai); Mahasiswa mhs2; strcpy(mhs2.nama, "Budi");...