a<<1 is equivalent to
a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the
above
Answers were Sorted based on User's Feedback
Answer / dev
left shift by 1 so the ans would be none of this..... it is
complementing
| Is This Answer Correct ? | 8 Yes | 15 No |
C program to find frequency of each character in a text file?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
write a C program to print the program itself ?!
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
What tq means in chat?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Why we use int main and void main?
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
What is the difference between local variable and global variable in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
write a program without using main function?