This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT city, COUNT (airport_code) AS airports_count | |
FROM airports_data | |
group by city | |
HAVING COUNT (airport_code) > 1 | |
LIMIT 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <locale.h> | |
#define MAX_TEAM_NAME_LENGTH 50 | |
#define MAX_PLAYER_NAME_LENGTH 50 | |
#define MAX_PLAYERS 100 | |
// Расширенная структура для хранения статистики игрока |