what is the difference between <stdio.h> and "stdio.h"
Answer Posted / bathakarai
The preprocessor <stdio.h> means that the directory is
predefined one.
but we specify "stdio.h" in their program that indicates
that the preprocessor is an userdefind one
Is This Answer Correct ? | 26 Yes | 3 No |
Post New Answer View All Answers
What is hungarian notation? Is it worthwhile?
Explain how do you sort filenames in a directory?
What is this pointer in c plus plus?
Write a program to check whether a number is prime or not using c?
What does %d do in c?
Can we declare variable anywhere in c?
What are the uses of null pointers?
Why should I prototype a function?
how could explain about job profile
Are enumerations really portable?
Can you please explain the difference between malloc() and calloc() function?
Is it valid to address one element beyond the end of an array?
List some applications of c programming language?
What is define directive?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].