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

Post New Answer

More C Interview Questions

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.....

0 Answers  


Explain what is the purpose of "extern" keyword in a function declaration?

0 Answers  


What are operators in c?

0 Answers  


How reliable are floating-point comparisons?

0 Answers  


main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }

4 Answers   Vector, Wipro, Zoho,






What are logical errors and how does it differ from syntax errors?

0 Answers  


What are the languages are portable and platform independent?Why they are like that?

1 Answers   Excel, Satyam,


Place the #include statement must be written in the program?

0 Answers  


what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }

6 Answers   IBM,


array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}

12 Answers   Google, Motorola,


How can type-insensitive macros be created?

0 Answers  


dynamically allocate memory for linear array of n integers,store some elements in it and find some of them

1 Answers  


Categories