Answer Posted / rajkumar
the variable ram is undeclared,
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is the use of header?
what do the 'c' and 'v' in argc and argv stand for?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Why do we write return 0 in c?
Which built-in library function can be used to match a patter from the string?
How do you define a function?
which is an algorithm for sorting in a growing Lexicographic order
What is the return type of sizeof?
What is the benefit of using an enum rather than a #define constant?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Difference between MAC vs. IP Addressing
What is main return c?
Why c is called top down?
How to write a code for reverse of string without using string functions?