Answer Posted / sunil gupta
x=5
x<<2=20
x>>2=1
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
How to delete a node from linked list w/o using collectons?
What is a nested loop?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is || operator and how does it function in a program?
What is dangling pointer in c?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
How to declare pointer variables?
using for loop sum 2 number of any 4 digit number in c language
Do string constants represent numerical values?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Are enumerations really portable?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is the use of #include in c?
What does the && operator do in a program code?
What is external variable in c?