#include <stdio.h> void main() { struct Clothes { int size; char Brand_name[50]; }; struct Clothes c; c.size = 40; printf("%d", c.size); }
40
Previous Question Next Question
Your comments will be displayed only after manual approval.