#include <stdio.h> struct A { int n; char m; }; int A = 150; int main() { struct A z; z.n = 150; printf("%d %d\n", z.n, A); }
150 150
Previous Question Next Question
Your comments will be displayed only after manual approval.