Explain what is the difference between a string and an array?
No Answer is Posted For this Question
Be the First to Post Answer
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is 2 d array in c?
Explain a file operation in C with an example.
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is the use of gets and puts?
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,
Write a program in c using only loops to print * * * * * *******
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what do the 'c' and 'v' in argc and argv stand for?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
read a number & print all its devisors using c-program?