what is pointer ? what is the use of pointer?
Answer Posted / guest
pointer is pointing to the addresss location
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is pointers in c?
Between macros and functions,which is better to use and why?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is graph in c?
Is boolean a datatype in c?
What is calloc malloc realloc in c?
What is typedef?
What is an example of structure?
What is the use of bitwise operator?
Explain modulus operator.
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How to implement a packet in C
What is the size of structure in c?
How do you determine the length of a string value that was stored in a variable?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?