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 |
How a string is stored in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Explain the properties of union. What is the size of a union variable
program to find the ASCII value of a number
How can a string be converted to a number?
Explain 'bit masking'?
What is the relationship between pointers and data structure?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
How can you increase the size of a dynamically allocated array?
what is the code to display color fonts in the output?