how to make c program without a libary?
e.g.#include<stdio.h> libary is not in c progaram.
Answer Posted / sanjapu shiva
Library file contain the 'DEFINATION OF FUNTIONS 'which have
been declared inside headerfile.
Library file's are available inside lib directory.
so it is a pre processor directive.so we can use that some
syntaxs..#include"stdio.h" and #include<stdio.h> etc,..
So we can't write program without a libary.
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
What is the difference between exit() and _exit() function in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
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 difference between union and structure in c?
What is realloc in c?
All technical questions
How can I avoid the abort, retry, fail messages?
What do you mean by c what are the main characteristics of c language?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
In C language, a variable name cannot contain?
Which is better oop or procedural?
Explain the difference between exit() and _exit() function?
Is c high or low level?
When should the volatile modifier be used?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?