What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
Answer Posted / k.kavitha
1)0
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
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
What is an expression?
What does static variable mean in c?
What is memory leak in c?
Tell me what is the purpose of 'register' keyword in c language?
What do you mean by keywords in c?
What is the 'named constructor idiom'?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
How many main () function we can have in a project?
How can I implement a delay, or time a users response, with sub-second resolution?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is calloc()?
Explain pointer. What are function pointers in C?
Is anything faster than c?
Can we declare a function inside a function in c?