what is the difference between #include<> and #include”…”?
Answer Posted / shrikanth s.h
#include<>, include the predefined header files,
#include"...." include the userdefined header files where
the control will start searching the file into the current
directory, we should mention the path where it should search.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How main function is called in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is meant by inheritance?
Is stack a keyword in c?
Explain how are 16- and 32-bit numbers stored?
What is the heap?
How can I list all of the predefined identifiers?
What is c language & why it is used?
How would you rename a function in C?
Explain function?
Why is c still so popular?
Difference between linking and loading?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What are the scope of static variables?
string reverse using recursion