redc's blog

By redc, history, 16 months ago, In English

May you explain to me ?

  • Vote: I like it
  • +3
  • Vote: I do not like it

| Write comment?
»
16 months ago, # |
  Vote: I like it 0 Vote: I do not like it

They're the same thing. You might often see people do signed main instead of int main because they do in the beginning. #define int long long

This is beacuse long long is not allowed as a return type in main(), but people want to use int instead of long long as they are used to it.