how can i define a struct having a constant character and unsigned int , without using any white space , i mean no blank space or new line or tab!!
typedef::struct(unsigned int * a, const char * b) c;
this definition is wrong , as its buggy , and has whitespaces i want to define a struct with unsigned int and constant character without using any white space
