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
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
How are Structure passing and returning implemented by the complier?
What is null pointer constant?
Which is better pointer or array?
What is volatile variable in c?
Can we access array using pointer in c language?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Which is best book for data structures in c?
What is a stream in c programming?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What are control structures? What are the different types?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is return in c programming?
What does c value mean?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..