write a C program: To recognize date of any format even
formats like "feb-02-2003","02-february-2003",mm/dd/yy,
dd/mm/yy and display it as mm/dd/yy.
No Answer is Posted For this Question
Be the First to Post Answer
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Write a Program to find whether the given number or string is palindrome.
Explain the red-black trees?
how to make program without <> in library.
How do you prevent buffer overflows in C?
what is available in C language but not in C++?
10 Answers CTS, TCS,
How does the assert() function work?
What is else if ladder?
What are the advantages of using Unions?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
What are .h files and what should I put in them?
difference between i++* and *++i