C Programming Language MCQ Structure in C Language
⚠ Report ✓ Question Verified Copy Link
#include struct p { int k; char c; float f; }; int main() { struct p x = {.c = 97}; printf("%f\n", x.f); }
Learn More MCQ Questions from C Programming Language MCQ Structure in C Language