what is the difference between normal variables and pointer
variables..............

Answer Posted / sasireka

normal variable contains tha value of variable either int
or float whereas pointer variable contains the address of
another variable

Is This Answer Correct ?    65 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

900


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

888


Explain how can you restore a redirected standard stream?

774


p*=(++q)++*--p when p=q=1 while(q<=6)

1462


explain what is a newline escape sequence?

861


What does printf does?

957


What type of function is main ()?

789


Can you tell me how to check whether a linked list is circular?

1053


Explain what is the benefit of using const for declaring constants?

788


What are reserved words?

845


Why header files are used?

826


Explain how can you check to see whether a symbol is defined?

859


What are header files why are they important?

800


Is it fine to write void main () or main () in c?

732


How can I call a function with an argument list built up at run time?

896