If a structure is used in only one function, can I declare it in this function? Can i do this:
int func() { struct { int a, b; } s; sa=5; return sa; }
gcc gasped, but it made a very strange looking mistake that I couldn’t understand, instead of saying "Sorry, you cannot do this."
source share