Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / arif
"stdio.h" C compiler-preprocessor search the header file in the current directory
<stdio.h> C preprocessor search the header file in all the directories
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why malloc is faster than calloc?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Explain how do you override a defined macro?
What are global variables?
What are derived data types in c?
Are there namespaces in c?
Explain what are the advantages and disadvantages of a heap?
What are 3 types of structures?
How variables are declared in c?
Write a program to print factorial of given number using recursion?
What is spaghetti programming?
largest Of three Number using without if condition?
What does typedef struct mean?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Why do we use return in c?