Answer Posted / hinali lukhi
C is case sensitive language.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is auto keyword in c?
What is the use of the function in c?
What is wrong with this statement? Myname = 'robin';
What is the difference between #include
What is difference between class and structure?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
How many levels of pointers have?
Can variables be declared anywhere in c?
How can I discover how many arguments a function was actually called with?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Why is it usually a bad idea to use gets()? Suggest a workaround.
Write a program to reverse a linked list in c.
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What is wrong with this program statement? void = 10;