As the question says. Is there some difference between the content of them?
Why do we have to declare the variable type before the pointer ????
Does the c process them differently?
Exemple:
typedef struct{
    int a;
    char b;
} some_st;
int main(){
    some_st *p;
    int *q;
}
Just a note: I came up with this question after work with linked lists.
Thank you for reading and answering.
 
     
     
     
    