Answer Posted / hr@tgksolutions.com
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we access array using pointer in c language?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
what are enumerations in C
Can the sizeof operator be used to tell the size of an array passed to a function?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is #define in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How many bytes are occupied by near, far and huge pointers (dos)?
Is it better to use a macro or a function?
can we have joblib in a proc ?
What is the usage of the pointer in c?
What is a file descriptor in c?
What is a const pointer?
Which type of language is c?
Why do we use main function?