what is the difference between <stdio.h> and "stdio.h"
Answer Posted / arun.k
#include<stdio.h> does not search the source directory,if
we write #include"stdio.h" it will search the source path
first end include that path
Is This Answer Correct ? | 8 Yes | 9 No |
Post New Answer View All Answers
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is the purpose of & in scanf?
What are data structures in c and how to use them?
What is a pointer value and address in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is include directive in c?
write a programming in c to find the sum of all elements in an array through function.
What is a built-in function in C?
Why doesn't C support function overloading?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Explain how do you sort filenames in a directory?
What is non linear data structure in c?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is the use of static variable in c?
How can I sort a linked list?