Question
becfdge-






Search
Can you Answer!!
  • Q What is the difference between Client side JavaScript and Server side JavaScript.
  • Q Who supported the “PURA” model for the Rural poverty Alleviation
  • Q How to get a client system IP address
  • Q What does principle 8, mutually beneficial supplier relationships, mean?
  • Q Duke D'Mond, who died aged 66 in 2009, was lead singer of which successful UK comedy pop group?
  • Q Difference between POP3 and IMAP Mail Server
  • Q For the enzymatic reaction what is the effect of a substance with the same spatial conformation as an enzymatic substrate? How is this type of substance known?
  • Q If you see statistics that deal with "undo" what are they really talking about?
  • Q The Gibraltar Straits lies between:
  • Q What is the use of XSLT element?
  • Q #include /* This problem was asked in PCS Bombay in a walk-in-interview * Write a recursive function that calculates * n * (n-1) * (n-2) * ....... 2 * 1 */ main() { int factorial(int n); int i,ans; printf(" Enter a Number:"); scanf("%d",&i); ans = factorial(i); printf(" Factorial by recursion = %d ", ans); } int factorial(int n) { if (n <= 1) return (1); else return ( n * factorial(n-1)); } ~