What type of variable identifier is used to read a node-type variable?
Throw the following error
warning: format '% lu' expects argument of type 'long unsigned int *', but argument 2 has type 'nodeL * {aka struct node *}
#include <stdio.h>
#include <conio.h>
typedef struct nodo
{
int info;
struct nodo *sig;
} nodoL;
int main(void) {
nodoL n;
scanf("%lu", &n);
printf("%x\n", n.info);
return 0;
}