What is the real difference between arrays and pointers?
Answer Posted / anu yadav
array can be of any size whereas pointer is always of 2 byte......
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the standard predefined macros?
How would you rename a function in C?
Is c is a middle level language?
What is the purpose of scanf() and printf() functions?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are enumerated types?
why programs in c are running with out #include
What is the return type of sizeof?
What is a header file?
What is the difference between abs() and fabs() functions?
How to delete a node from linked list w/o using collectons?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
How many types of operator or there in c?
What is #define size in c?
What is a loop?