Answer the question
In order to leave comments, you need to log in
How is the size of the field bits formed?
#include <stdio.h>
typedef struct {
int a:1;
int b:2;
int c:30;
} fil;
int main() {
printf("%i", sizeof(fil));
return 0;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question