Is it better to bitshift a value than to multiply by 2?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
Which header file is used for clrscr?
Write a program to check palindrome number in c programming?
What is the value of c?
what is computer engg
What is the difference between abs() and fabs() functions?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
What is uint8 in c?
Explain how do you print only part of a string?
How do I access command-line arguments?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT