Find your day from your DOB?

Answers were Sorted based on User's Feedback



Find your day from your DOB?..

Answer / shruti

@Raghu..

good job.. :-)
thanks for the code.. :-)

Is This Answer Correct ?    0 Yes 1 No

Find your day from your DOB?..

Answer / ganesh

using date structures

Is This Answer Correct ?    0 Yes 1 No

Find your day from your DOB?..

Answer / hates prof.muthu

who is this moron prof.muthu....y the hell r u writing such
nonsense...we all know to solve by ur methods..jus stop
writing such things or GO TO HELL.

Is This Answer Correct ?    0 Yes 1 No

Find your day from your DOB?..

Answer / wfiasea

<a href="http://itywyw.co.cc/blog3/1916.html ">jlejnl</a> http://itywyw.co.cc/2125.html <a href="http://itywyw.co.cc/blog3/1916.html ">jlejnl</a> doctor http://itywyw.co.cc/2125.html jbnvnbh doctor http://itywyw.co.cc/2125.html jbnvnbh

Is This Answer Correct ?    0 Yes 2 No

Find your day from your DOB?..

Answer / prof.muthu

pleasse refer calender book....

if u feel difficult to find your day of your date of birth
call me...i will help u!
by prof.muthu M.C.A PHD
PH:9962940220

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Code Interview Questions

main() { char name[10],s[12]; scanf(" \"%[^\"]\"",s); } How scanf will execute?

2 Answers  


int i=10; main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); }

1 Answers  


#include<stdio.h> int main() { int a=3,post,pre; post= a++ * a++ * a++; a=3; pre= ++a * ++a * ++a; printf("post=%d pre=%d",post,pre); return 0; }

3 Answers  


main() { extern out; printf("%d", out); } int out=100;

1 Answers  


#include<stdio.h> main() { struct xx { int x; struct yy { char s; struct xx *p; }; struct yy *q; }; }

1 Answers  






Program to Delete an element from a doubly linked list.

4 Answers   College School Exams Tests, Infosys,


Is the following code legal? typedef struct a aType; struct a { int x; aType *b; };

1 Answers  


Hi, i have a project that the teacher want a pyramid of numbers in C# or java...when we click a button...the pyramid should be generated in a listbox/or JtextArea...and the pyramid should have the folowing form: 1 232 34543 4567654 567898765 67890109876 7890123210987 890123454321098 90123456765432109 0123456789876543210 Plz help with codes...didn't find anything on the net.

0 Answers  


#include<stdio.h> void fun(int); int main() { int a; a=3; fun(a); printf("\n"); return 0; } void fun(int i) { if(n>0) { fun(--n); printf("%d",n); fun(--n); } } the answer is 0 1 2 0..someone explain how the code is executed..?

1 Answers   Wipro,


1) int i=5; j=i++ + i++ + i++; printf("%d",j);This code gives the answer 15.But if we replace the value of the j then anser is different?why? 2)int i=5; printf("%d",i++ + i++ + i++); this givs 18.

8 Answers   IBPS, Infosys, TCS,


main() { static int a[3][3]={1,2,3,4,5,6,7,8,9}; int i,j; static *p[]={a,a+1,a+2}; for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%d\t%d\t%d\t%d\n",*(*(p+i)+j), *(*(j+p)+i),*(*(i+p)+j),*(*(p+j)+i)); } }

1 Answers  


main() { int i=-1; -i; printf("i = %d, -i = %d \n",i,-i); }

1 Answers  


Categories