#include <stdio.h> typedef struct MM { int n1, n2; }mm; int main() { struct MM m = {22, 44}; mm k = m; printf("%d\n", k.n1); }
22
Previous Question Next Question
Your comments will be displayed only after manual approval.