Answer Posted / ankush tyagi
Pointers are a special type of variables which are used to
store the address of the another variable....
Four type of pointers are defined...
1.Near pointer
2.Fare pointer
3.Huge pointer
4.File pointer
Syntex //-
data type var_name;
data type *pointer_name;
pointer_name=&var_name;
in both the case data type should be same other wise we can
use the type casting;;;....
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What are reserved words with a programming language?
How do I swap bytes?
provide an example of the Group by clause, when would you use this clause
What is the use of getch ()?
What is the default value of local and global variables in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is double pointer in c?
Explain low-order bytes.
What are the functions to open and close the file in c language?
Is c easier than java?
What is the difference between text files and binary files?
What are the keywords in c?