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
No Answer is Posted For this Question
Be the First to Post Answer
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is a string?
Is c easier than java?
Is python a c language?
Is it possible to execute code even after the program exits the main() function?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is a node in c?
What is self-referential structure in c programming?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
What are the advantages of using linked list for tree construction?
what is the difference between structural,object based,object orientd programming languages?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a