Answer Posted / ganesh
i m confuse that if it not than why * has two meaning 1.
multiplication symbol and other is indirectional operator
used in pointer.
| Is This Answer Correct ? | 3 Yes | 7 No |
Post New Answer View All Answers
What is break statement?
What is the difference between strcpy() and memcpy() function in c programming?
How can you tell whether a program was compiled using c versus c++?
What are the three constants used in c?
Is it cc or c in a letter?
What does a function declared as pascal do differently?
Why do we need a structure?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is the difference between array and structure in c?
code for quick sort?
What is the purpose of 'register' keyword in c language?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Why doesnt the call scanf work?
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 New modifiers?