any string of bits of length 'n' represents a unique non-
negative integer between.............?
Answers were Sorted based on User's Feedback
Explain how are 16- and 32-bit numbers stored?
Write a code to generate divisors of an integer?
What is #include in c?
Is c procedural or object oriented?
How can I invoke another program or command and trap its output?
What are the types of variables in c?
Why do u use # before include in a C Progam?
What is the difference between struct and union in C?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
code for copying two strings with out strcpy() function.
Can we declare function inside main?
if we take a number as a char then can we manipulate(add, subtract) on this number