Find your day from your DOB?
Answers were Sorted based on User's Feedback
Answer / shruti
@Raghu..
good job.. :-)
thanks for the code.. :-)
| Is This Answer Correct ? | 0 Yes | 1 No |
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 |
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 |
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 |
main() { int a=10,*j; void *k; j=k=&a; j++; k++; printf("\n %u %u ",j,k); }
main( ) { int a[2][3][2] = {{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}}; printf(ā%u %u %u %d \nā,a,*a,**a,***a); printf(ā%u %u %u %d \nā,a+1,*a+1,**a+1,***a+1); }
How do you create a really large matrix (i.e. 3500x3500) in C without having the program crash? I can only reach up to 2500. It must have something to do with lack of memory. Please help!
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
#define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
4 Answers Google, HCL, Quick Heal, WTF,
main() { unsigned int i=10; while(i-->=0) printf("%u ",i); }
1 o 1 1 0 1 0 1 0 1 1 0 1 0 1 how to design this function format in c-language ?
main(){ int a= 0;int b = 20;char x =1;char y =10; if(a,b,x,y) printf("hello"); }
main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
char inputString[100] = {0}; To get string input from the keyboard which one of the following is better? 1) gets(inputString) 2) fgets(inputString, sizeof(inputString), fp)
main() { int x=5; for(;x!=0;x--) { printf("x=%d\n", x--); } } a. 5, 4, 3, 2,1 b. 4, 3, 2, 1, 0 c. 5, 3, 1 d. none of the above
typedef struct error{int warning, error, exception;}error; main() { error g1; g1.error =1; printf("%d",g1.error); }