Блог пользователя redc

Автор redc, история, 16 месяцев назад, По-английски

May you explain to me ?

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

»
16 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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.