Answer Posted / siva
for decimal values
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Do you know the difference between exit() and _exit() function in c?
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
what will be maximum number of comparisons when number of elements are given?
What are the 4 types of programming language?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Write a program for finding factorial of a number.
What are enums in c?
Why c is procedure oriented?
Which built-in library function can be used to match a patter from the string?
how could explain about job profile
What is the difference between Printf(..) and sprint(...) ?
What is indirection in c?
Explain why can’t constant values be used to define an array’s initial size?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
writ a program to compare using strcmp VIVA and viva with its output.