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
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
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Explain how can you restore a redirected standard stream?
p*=(++q)++*--p when p=q=1 while(q<=6)
explain what is a newline escape sequence?
What does printf does?
What type of function is main ()?
Can you tell me how to check whether a linked list is circular?
Explain what is the benefit of using const for declaring constants?
What are reserved words?
Why header files are used?
Explain how can you check to see whether a symbol is defined?
What are header files why are they important?
Is it fine to write void main () or main () in c?
How can I call a function with an argument list built up at run time?