#include #include #define MAX 2 typedef int Ttomb[MAX]; void kiir(int *tomb) { tomb[0]=8; } int main() { Ttomb tomb; tomb[0] = 5; tomb[5] = 3; kiir(tomb); printf("%d\n", tomb[0]); }