difference between ordinary variable and pointer in C?
Answer Posted / syed
an ordinary variable is like a container it can hold any
value and we can change the value of ordinary variable at
time throughout the program.
a pointer is a variable that stores the address of another
variable ..
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Do you know the use of fflush() function?
What is a function simple definition?
What are the different types of control structures?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What is meant by realloc()?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Why does not c have an exponentiation operator?
Here is a neat trick for checking whether two strings are equal
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Is c is a high level language?
What does p mean in physics?
Explain setjmp()?
What are terms in math?
What is the meaning of ?
What is void main () in c?