Answer Posted / ankith.v
C And C++
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the collection of communication lines and routers called?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is type qualifiers?
Can you please explain the difference between malloc() and calloc() function?
What does c mean before a date?
What is sizeof return in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Explain built-in function?
What is volatile variable in c with example?
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
Do you have any idea how to compare array with pointer in c?
Why use int main instead of void main?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Is main an identifier in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?