Answer Posted / shrth
example:435
the answer is 4+3+5=12
| Is This Answer Correct ? | 89 Yes | 49 No |
Post New Answer View All Answers
Differentiate abs() function from fabs() function.
can anyone suggest some site name..where i can get some good data structure puzzles???
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
When should the volatile modifier be used?
Write a program to reverse a given number in c language?
What are the standard predefined macros?
How can you return multiple values from a function?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
What is #include stdio h?
Explain the difference between null pointer and void pointer.
How can you check to see whether a symbol is defined?
Explain what is a 'locale'?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
to find the closest pair
Can a file other than a .h file be included with #include?