#include #include using namespace std; struct student { float gpa; long ssn; }; int main() { student s = {4.0,1234567890}; return 0; }