Answer Posted / e
(.) is the period operator
| Is This Answer Correct ? | 24 Yes | 2 No |
Post New Answer View All Answers
what is the difference between 123 and 0123 in c?
What is pointer to pointer in c?
What does sizeof return c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain the advantages and disadvantages of macros.
Explain the difference between strcpy() and memcpy() function?
What is pass by reference in c?
How can I do graphics in c?
Can math operations be performed on a void pointer?
What is floating point constants?
What is the purpose of 'register' keyword in c language?
When should you not use a type cast?
What is return type in c?
what are the 10 different models of writing an addition program in C language?
how can f be used for both float and double arguments in printf? Are not they different types?