How pointer is different from array?
Answer / Omdutt
A pointer stores the memory address of a variable, while an array is a collection of elements of the same data type with a contiguous block of memory. Pointers are variables that hold memory addresses and can point to any data type, whereas arrays have a fixed size and type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
write a own function for strstr
difference between Low, Middle, High Level languages in c ?
Write a program to print prime nums from 1-20 using c programing?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
what is the return type of printf
how to get the starting address of file stored in harddisk through 'C'program.
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
What is volatile variable in c with example?
What is restrict keyword in c?
the format specified for hexa decimal is a.%d b.%o c.%x d.%u