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
Why can’t we compare structures?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
How does sizeof know array size?
What is a function in c?
How can I split up a string into whitespace-separated fields?
Give the rules for variable declaration?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is sizeof array?
What are all different types of pointers in c?
What is #define used for in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Can include files be nested?
What language is windows 1.0 written?
write a program to find the given number is prime or not
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.