Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
how to write a data 10 in address location 0x2000
What is the meaning of typedef struct in c?
Can we declare variable anywhere in c?
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Explain how do you declare an array that will hold more than 64kb of data?
What are the different types of pointers used in c language?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What is pivot in c?
Why is extern used in c?
Which is more efficient, a switch statement or an if else chain?
How can you draw circles in C?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }