What is the real difference between arrays and pointers?
Answer Posted / saurabh agarwal
array name is a unmodifiable lvalue whereas pointer is a modifiable l value
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is it possible to pass an entire structure to functions?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How can I change their mode to binary?
How do I create a directory? How do I remove a directory (and its contents)?
Where are local variables stored in c?
Explain #pragma statements.
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
How are 16- and 32-bit numbers stored?
p*=(++q)++*--p when p=q=1 while(q<=6)
What is sizeof array in c?
How can I find out if there are characters available for reading?
hi, which software companys will take,if d candidate's % is jst 55%?
Why pointers are used?
What is return in c programming?