#include <stdio.h>
#include <stdlib.h>
struct player{
char letter;
int age;
};
typedef struct player player_t;
int main()
{
player_t new_player;
player_t *p1ayerpointer;
playerpointer=&new_player;
return 0;
}
Why is this not working?
Expert Answer
An answer will be send to you shortly. . . . .