what is the difference between #include<> and #include”…”?
Answer Posted / anandi
Both #include<> and #include" " are similar used to include
the header files.....But we can use both #include<> and
#include" " for predefined header files...... At the same
time we can not use the #include<> for the user-defined
header files..... We should use #include" " for the user-
defined header files......
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between ‘g’ and “g” in C?
What are pointers? What are different types of pointers?
write a c program to find the sum of five entered numbers using an array named number
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Tell me when would you use a pointer to a function?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is merge sort in c?
How do you write a program which produces its own source code as output?
Where register variables are stored in c?
Is c call by value?
how to find binary of number?
What is scanf () in c?
Explain how can I remove the trailing spaces from a string?