Structs

Sort by

recency

|

241 Discussions

|

  • + 0 comments
    struct Student{
        int age,standard ;
        string first_name, last_name;
    };
    
  • + 0 comments
    #include <cmath>
    #include <cstdio>
    #include <vector>
    #include <iostream>
    #include <algorithm>
    using namespace std;
    
    /*
        add code for struct here.
    */
    struct Student
    {
     int age; 
     string first_name;
     string last_name;
     int standard;
    };
    
    int main() {
        Student st;
        
        cin >> st.age >> st.first_name >> st.last_name >> st.standard;
        cout << st.age << " " << st.first_name << " " << st.last_name << " " << st.standard;
        
        return 0;
    }
    
  • + 0 comments

    struct Student{ int age; string first_name; string last_name; int standard; };

  • + 1 comment
    #include <cmath>
    #include <cstdio>
    #include <vector>
    #include <iostream>
    #include <algorithm>
    using namespace std;
    
    struct Student {
        int age;
        string first_name;
        string last_name;
        int standard;
    };
    int main() {
        Student st;
        cin >> st.age >> st.first_name >> st.last_name >> st.standard;
        cout << st.age << " " << st.first_name << " " << st.last_name << " " << st.standard;
        
        return 0;
    }
    
  • + 0 comments
    #include <cmath>
    #include <cstdio>
    #include <vector>
    #include <iostream>
    #include <algorithm>
    using namespace std;
    
    /*
        add code for struct here.
    */
    struct Student{
        int age;
        string first_name;
        string last_name;
        int standard;
    };
    
    int main() {
        Student st;
        
        cin >> st.age >> st.first_name >> st.last_name >> st.standard;
        cout << st.age << " " << st.first_name << " " << st.last_name << " " 
    		
    		
    		
    		
    		no need to thank me !!! :)
    		
    		
    		
    		
    		
    		
    		
    		
    		
    		
    		
    		<< st.standard;
        
        return 0;
    }