How can I implement sets or arrays of bits?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how logic is used

0 Answers  


what is Array?

3 Answers  


Is there anything like an ifdef for typedefs?

0 Answers  


Is return a keyword in c?

0 Answers  


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

0 Answers   Wilco,


what are the uses of structure?

7 Answers   HCL,


How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?

2 Answers  


Is c easier than java?

0 Answers  


What are the 3 types of structures?

0 Answers  


Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0

6 Answers   Qualcomm,


What are pointers? Why are they used?

0 Answers  


Categories