main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Post New Answer View All Answers
Write a program to print fibonacci series without using recursion?
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
write a c program for swapping two strings using pointer
Tell me what are bitwise shift operators?
What is a program flowchart and how does it help in writing a program?
What is a stream water?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
program for reversing a selected line word by word when multiple lines are given without using strrev
What does. int *x[](); means ?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What are 'near' and 'far' pointers?
Why can't I perform arithmetic on a void* pointer?
What is wrong with this declaration?
Explain what are the standard predefined macros?
Explain how do you search data in a data file using random access method?