What is period operator in c?
Answers were Sorted based on User's Feedback
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 |
Answer / pavan sai
it is used to retrieve data within the time intervals
| Is This Answer Correct ? | 3 Yes | 2 No |
Explain how can you be sure that a program follows the ansi c standard?
Can a void pointer point to a function?
How can I determine whether a machines byte order is big-endian or little-endian?
Software Interview Questions
how to add numbers without using arithmetic operators.
What is the use of typedef in c?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
how to devloped c lenguege?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Implement bit Array in C.