what are bitwise shift operators?
Answers were Sorted based on User's Feedback
Answer / bhupende r singh
The bitwise shift operators move the bit values of a binary
object.
| Is This Answer Correct ? | 1 Yes | 0 No |
HOW CAN ADD OUR FUNCTION IN LIBRARY.
what are the facialities provided by you after the selection of the student.
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
How to draw the flowchart for structure programs?
What are the 3 types of structures?
64/square(4)
Can we declare function inside main?
What is dangling pointer in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none