#include stdio.hstruct School { int age, rollNo;};void solve() { struct School sc; sc.age = 19; sc.rollNo = 82; printf("%d %d", sc.age, sc.rollNo);}int main() { solve(); return 0;}
Not registered? Create an account
Forgot Password?
Already a registered user? Login