Answer Posted / lilly
0.0111
| Is This Answer Correct ? | 22 Yes | 24 No |
Post New Answer View All Answers
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What does dm mean sexually?
What is the difference between printf and scanf in c?
How can you check to see whether a symbol is defined?
Explain how do you convert strings to numbers in c?
What are 3 types of structures?
Which header file is essential for using strcmp function?
What is the value of h?
what value is returned to operating system after program execution?
What is "Hungarian Notation"?
What are register variables? What are the advantage of using register variables?
What is masking?
What is the time and space complexities of merge sort and when is it preferred over quick sort?