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
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Can one function call another?
What is else if ladder?
List some of the dynamic data structures in C?
What is substring in c?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What are the features of the c language?
write a own function to compare two strings with out using stringcomparition function?
why we are using semicolon at the end of printh statment
How do you do dynamic memory allocation in C applications?