What is period operator in c?

Answers were Sorted based on User's Feedback



What is period operator in c?..

Answer / e

(.) is the period operator

Is This Answer Correct ?    23 Yes 2 No

What is period operator in c?..

Answer / manish soni

period operator is a main operator bcoz it is used to
access the strutre member .
s.n1
s.n2
....like that.

Is This Answer Correct ?    18 Yes 4 No

What is period operator in c?..

Answer / pavan sai

it is used to retrieve data within the time intervals

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More C Interview Questions

say the following declaration is correct nr not. int b=a,n=0;

4 Answers   Wipro,


Is there any demerits of using pointer?

0 Answers  


how to devloped c lenguege?

4 Answers  


Explain what is the difference between the expression '++a' and 'a++'?

0 Answers  


What are the features of c language?

0 Answers  






Explain what are multidimensional arrays?

0 Answers  


What is #line in c?

0 Answers  


what are the files which are automatically opened when a c file is executed?

3 Answers  


Explain how do you print an address?

0 Answers  


what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


What does c in a circle mean?

0 Answers  


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


Categories