what is the difference between #include<> and #include”…”?
Answer Posted / kush joshi
#include<>, include the predefined header files, but
#include"...." include the userdefined header files in c
program. in this within "...." we mention the path where
the users header file is stored.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
difference between native and cross compilers
Explain zero based addressing.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is far pointer in c?
What is the most efficient way to count the number of bits which are set in an integer?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Explain how do you generate random numbers in c?
What is extern variable in c with example?
Where static variables are stored in memory in c?
What is the difference between mpi and openmp?
Why c is known as a mother language?
What do you understand by friend-functions? How are they used?
Explain what are global variables and explain how do you declare them?