0
quiz
int x1 = 42; float x2 = 3.14; char x3 = 'a'; void* arr[] = {&x1, &x2, & x3}; printf ("%d %f %c", *(( int *)arr[0]), * ((float*)arr[1]), *(( char *)arr[2]));
1 Answer
+ 3
Yes it's a bloody mess of code. Where did you get this thing you call quiz?