what is the difference between <stdio.h> and "stdio.h"
Answer Posted / kuldeep
hello in simple way-
when we are using #include<stdio.h> in our program here no
need for search the header files in directory. but when we
are using the #include"stdio.h" in our program firstly
header files search in current directory/parent directory.
| Is This Answer Correct ? | 6 Yes | 7 No |
Post New Answer View All Answers
How many levels deep can include files be nested?
Explain what is the stack?
How many types of operator or there in c?
Why array is used in c?
List some basic data types in c?
Explain zero based addressing.
What are high level languages like C and FORTRAN also known as?
What is bubble sort technique in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What are pragmas and what are they good for?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Differentiate between calloc and malloc.
List a few unconditional control statement in c.
Can you please explain the scope of static variables?
What type of function is main ()?