what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / n
implementation defined. read manual for the compiler you use.
if include " " fails, then include < > is tried
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program to show the change in position of a cursor using c
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is the difference between scanf and fscanf?
Why C language is a procedural language?
What is meant by type casting?
What is the use of typedef in c?
What is meant by errors and debugging?
Can we access array using pointer in c language?
What is meant by high-order and low-order bytes?
What is function prototype in c with example?
Explain how do you determine a file’s attributes?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Explain what is a static function?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is header file in c?