252 views
0 votes
0 votes
Bit fields use for padding.It generally contained integer bits(signed and unsigned). But it cannot contain addresses. Does it mean bit field cannot contain a pointer ?

When integer can contain a pointer, how bit field cannot contain a pointer?Are these not contradictory?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
2
UK asked Mar 25, 2016
698 views
What is the difference between struct node* head= NULL and struct node* head= (struct node*)NULL ?