What is the difference between call by value and call by reference in c?
No Answer is Posted For this Question
Be the First to Post Answer
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,
define string ?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
What is binary tree in c?
How many types of operator or there in c?
What is the most efficient way to store flag values?
Explain built-in function?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
is it possible to create your own header files?
Explain output of printf("Hello World"-'A'+'B'); ?