#include <stdio.h> struct A { int p; char q; float r; }; int main() { struct A t = {.q = 15, .r = 13, .p = 23}; printf("%f\n", t.r); }
Yes
Previous Question Next Question
Your comments will be displayed only after manual approval.