#include <stdio.h> struct clothes { int size; char brand_name[20]; }; struct clothes c; void main() { c.size = 36; printf("%s", c.brand_name); }
Nothing
Previous Question Next Question
Your comments will be displayed only after manual approval.