If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?


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

Post New Answer

More C Interview Questions

Explain how can I remove the trailing spaces from a string?

0 Answers  


What math functions are available for integers? For floating point?

0 Answers  


Are there namespaces in c?

0 Answers  


f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


what is c programming?

3 Answers   TCS,






Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


What is queue in c?

0 Answers  


what is the structure pointer?

0 Answers   Accenture, HCL,


Explain how can you restore a redirected standard stream?

0 Answers  


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

0 Answers  


What is define directive?

0 Answers  


Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?

1 Answers   Oracle,


Categories