#include <stdio.h> struct B { int m; char n; float t; }; int B = 55; int main() { struct B z = {10, 99}; printf("%f %d\n", z.t, B); }
0.000000 55
Previous Question Next Question
Your comments will be displayed only after manual approval.