Contact: aviboots(AT)netvision.net.il
39,988 questions
51,933 answers
573 users
#include <iostream> struct ST { int first, second, third; std::string str; } typedef ST; int main() { ST st{}; std::cout << st.first << " " << st.second << " " << st.third << '\n'; std::cout << st.str; } /* run: 0 0 0 */