How can you find the day of the week given the date?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the meaning of 2d in c?

0 Answers  


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...

1 Answers   Infosys,


What is calloc malloc realloc in c?

0 Answers  


When a c file is executed there are many files that are automatically opened what are they files?

0 Answers  






Why is a semicolon (;) put at the end of every program statement?

0 Answers  


prog for 1st five prime numbers in 2^x - 1

0 Answers  


What do you mean by command line argument?

0 Answers   TCS,


Explain can you assign a different address to an array tag?

0 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


What is this pointer in c plus plus?

0 Answers  


Write a program to print factorial of given number using recursion?

0 Answers  


Categories