what is the difference between <stdio.h> and "stdio.h"
Answers were Sorted based on User's Feedback
Answer / tutgfjyhg
What is the difference between #include “stdio.h” and #include <stdio.h> in C?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Answer / 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 |
Answer / cpmt
<stdio.h> searches in the current directory."stdio.h"
searches in the both source and current directory.
| Is This Answer Correct ? | 6 Yes | 10 No |
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
Write a factorial program using C.
program to convert a integer to string in c language'
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
WHOT IS CHAR?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What math functions are available for integers? For floating point?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How the C program can be compiled?
What are the 3 types of structures?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }