WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
No Answer is Posted For this Question
Be the First to Post Answer
program to find the ASCII value of a number
What are the c keywords?
What is the meaning of typedef struct in c?
What standard functions are available to manipulate strings?
when to use : in c program?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
Was 2000 a leap year?
What does it mean when the linker says that _end is undefined?
What is a lvalue
What is the best style for code layout in c?