Answer Posted / prakash dasari
pointer is also like an ordinary variable which can hold
some data. But the difference is it holds the memory
address where that particular variable is stored.
so pointer is a memory varible which holds the valid
address of similar type. that is integer pointer have to
use to hold the address of the integer variable to avoid
the unexpected results. so to store the float varible data
use float pointer only for datasafe.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Write a program to reverse a given number in c language?
What is meant by high-order and low-order bytes?
Explain how do you determine a file’s attributes?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Why cant I open a file by its explicit path?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What is a static function in c?
What is memcpy() function?
Is it possible to pass an entire structure to functions?
Explain #pragma statements.
What are the rules for the identifier?
write a program to print data of 5 five students with structures?
Explain what is wrong with this statement? Myname = ?robin?;
What is pre-emptive data structure and explain it with example?
What are the ways to a null pointer can use in c programming language?