Answer Posted / sudarsan gouda
# is nothing but the preprocessor operator.That means it
will execute before the main() execution.
That means we are required to include that header file
those are required to our program before main(),
| Is This Answer Correct ? | 56 Yes | 4 No |
Post New Answer View All Answers
Explain how do you list files in a directory?
Can include files be nested? How many levels deep can include files be nested?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How to write c functions that modify head pointer of a linked list?
Can a variable be both static and volatile in c?
How can I determine whether a machines byte order is big-endian or little-endian?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is define directive?
Define and explain about ! Operator?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is the argument of a function in c?
How can I list all of the predefined identifiers?
What are pointers? What are different types of pointers?
Is register a keyword in c?
What does void main return?