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 use of #include in c?
Why should I prototype a function?
How can I find the modification date of a file?
Which is best linux os?
Distinguish between actual and formal arguments.
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is external variable in c?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Why is it that not all header files are declared in every C program?
write a c program to find the sum of five entered numbers using an array named number
Explain the advantages of using macro in c language?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Explain what is a program flowchart and explain how does it help in writing a program?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above