difference between ordinary variable and pointer in C?
Answer Posted / guest
ordinary variable holds value and pointer variable holds
the address
| Is This Answer Correct ? | 21 Yes | 1 No |
Post New Answer View All Answers
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
Is null a keyword in c?
What are types of preprocessor in c?
Which is better pointer or array?
Explain the use of fflush() function?
What is wrong in this statement?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
How can I find the modification date and time of a file?
What is the use of c language in real life?
Can two or more operators such as and be combined in a single line of program code?
What is far pointer in c?
What is pass by reference in c?
What is huge pointer in c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?