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 |
Give a oneline C expression to test whether a number is a power of 2?
25 Answers EA Electronic Arts, Google, Motorola,
main(){ unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); }
What are the following notations of defining functions known as? i. int abc(int a,float b) { /* some code */ } ii. int abc(a,b) int a; float b; { /* some code*/ }
Find your day from your DOB?
15 Answers Accenture, Microsoft,
Is it possible to print a name without using commas, double quotes,semi-colons?
To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates.
19 Answers Amazon, BITS, Microsoft, Syncfusion, Synergy, Vector,
Write a program to receive an integer and find its octal equivalent?
void main() { int i=5; printf("%d",i+++++i); }
main() { int i, j, *p; i = 25; j = 100; p = &i; // Address of i is assigned to pointer p printf("%f", i/(*p) ); // i is divided by pointer p } a. Runtime error. b. 1.00000 c. Compile error d. 0.00000
main() { int i, j; scanf("%d %d"+scanf("%d %d", &i, &j)); printf("%d %d", i, j); } a. Runtime error. b. 0, 0 c. Compile error d. the first two values entered by the user
writte a c-programm to display smill paces
int swap(int *a,int *b) { *a=*a+*b;*b=*a-*b;*a=*a-*b; } main() { int x=10,y=20; swap(&x,&y); printf("x= %d y = %d\n",x,y); }