what are bit fields in c?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Bitfields allow allocation of a specific number of bits to structure members.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Bitfields allow allocation of a specific number of bits to structure members.
| Is This Answer Correct ? | 0 Yes | 0 No |
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is use of bit field?
Tell us something about keyword 'auto'.
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
How can you dynamically allocate memory in C?
When a c file is executed there are many files that are automatically opened what are they files?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is an endless loop?
write a c programme for add of two numbers with out use of arthematic operators
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
Is c high or low level?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?