Explain bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What are the disadvantages of a shell structure?
Which built-in library function can be used to match a patter from the string?
What is a good data structure to use for storing lines of text?
A stack can be implemented only using array?if not what is used?
What is || operator and how does it function in a program?
Explain how can you restore a redirected standard stream?
Explain what are linked list?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
What is difference between array and pointer in c?
how to determine the complexity of an algorithm as log(n)