Differentiate between ordinary variable and pointer in c.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?

8 Answers   Mascot, TCS,


main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }

2 Answers   Vector, Vector India,


Explain how can I write functions that take a variable number of arguments?

0 Answers  


What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }

4 Answers   ADITI,


how would a 4*3 array A[4][3] stored in Row Major Order?

0 Answers   HCL, Ignou,






Explain what does it mean when a pointer is used in an if statement?

0 Answers  


What is the difference between constant pointer and constant variable?

0 Answers   NIIT,


What is the heap?

0 Answers  


What is string length in c?

0 Answers  


What is %d used for?

0 Answers  


What is the meaning of int *x[]();?

1 Answers  


hat is a pointer?

4 Answers   Assurgent,


Categories