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 |
How pointer is different from array?
How to set file pointer to beginning c?
Explain following declaration int *P(void); and int (*p)(char *a);
wat is the difference between array and pointer?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
program in c to print 1 to 100 without using loop
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
how can we print hellow world programme without using semicolon
what is purpose of fflush(stdin) function
Explain what a Binary Search Tree is.