Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

QUIZ

Name: Anonymous 2010-07-24 16:42

int a;
what is the type of "&a" ?

Name: Anonymous 2010-07-24 17:21

     1                        
char *a = "anus";
what is the type of *a ?

     2                        
uint32_t *(*a)['a'];
what is the type of a ?

     3                        
(void *)(*a)()
what is the type of a ?

     4                        

int a = 5;
int *b = a;
a = a/*b;

what is the value of a ?

     5                        

struct a {
    char a :4;
} a;

what is the type of a->a ?

Name: Anonymous 2010-07-24 17:46

>>1
int *

>>11
1. char
2. uint32_t *(*)['a']
3. void *(*)()
4. doesn't compile due to unterminated comment.
5. char

Name: Anonymous 2010-07-24 17:55

>>12
5. is not a char

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List