wat is the difference between array and pointer?
Answer Posted / unni
array is a fixed sequence collection of elements of the same datatype:
pointer contains memory address as their values...
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
What language is lisp written in?
Where static variables are stored in memory in c?
What does 3 periods mean in texting?
Why main is not a keyword in c?
What is pointer to pointer in c?
Describe the difference between = and == symbols in c programming?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is struct node in c?
What is the best way to store flag values in a program?
What is the purpose of clrscr () printf () and getch ()?
Define macros.
What is line in c preprocessor?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....