#include int main(){ int a, b, c; // This is ok int* d, e, f; // d is a pointer, e and f are integers! int *g, *h, *i; // These are all int pointers int j, k, *l; // this is fine too, and kind of clear }