Tell us bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
What is dangling pointer in c?
What is the general form of function in c?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
Can we declare variables anywhere in c?
what are the different storage classes in c?
What is a function simple definition?
What is the meaning of && in c?
Why do we use null pointer?
What is the benefit of using an enum rather than a #define constant?
What is type qualifiers?
How many keywords (reserve words) are in c?