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 |
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is pointer and structure in c?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
how can use subset in c program and give more example
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
Explain command-line arguments in C.
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
c program to compute AREA under integral
What is c basic?
How does C++ help with the tradeoff of safety vs. usability?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }