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 |
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Differentiate between #include<...> and #include '...'
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
what are bit fields? What is the use of bit fields in a structure declaration?
0 Answers Flextronics, TISL, Virtusa,
What are pointers? What are stacks and queues?
Is int a keyword in c?
What functions are in conio h?
When is a “switch” statement preferable over an “if” statement?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
write a program in c to read array check element is present or not?
In which area global, external variables are stored?