Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
No Answer is Posted For this Question
Be the First to Post Answer
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
What are the advantages and disadvantages of c language?
How macro execution is faster than function ?
sir, i cannot find the way how to write aprogram by using array on queue
I came across some code that puts a (void) cast before each call to printf. Why?
Convert the following expression to postfix and prefix (A+B) * (D-C)
What are the features of the c language?
code for replace tabs with equivalent number of blanks
how can i get this by using for loop? * ** * **** * ******
Explain setjmp()?
What is structure padding & expalain wid example what is bit wise structure?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff