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 |
What is volatile keyword in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Why double pointer is used in c?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Explain pointer. What are function pointers in C?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Can you please compare array with pointer?
What is a pointer in c?
What is the scope of global variable in c?
what is structuer?