jweinst1
3/26/2017 - 5:13 PM

basic c structure

basic c structure

#include <stdio.h>

struct f {
    int m;
};



int main() {
    printf("Hello, World!\n");
    struct f g;
    g.m = 4;
    printf("%d", g.m);
    return 0;
}