what is the difference between <stdio.h> and "stdio.h"
Answer Posted / subrata kumer paul.
<stdio.h> searches in standard C library locations, whereas
"stdio.h" searches in the current directory as well.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is d scanf?
What is a const pointer?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is a void pointer in c?
What is the purpose of type declarations?
write a program to copy the string using switch case?
What is operator precedence?
What are formal parameters?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Why use int main instead of void main?
Explain how are portions of a program disabled in demo versions?
int far *near * p; means
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Explain modulus operator. What are the restrictions of a modulus operator?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?