how to make c program without a libary?
e.g.#include<stdio.h> libary is not in c progaram.
Answer Posted / anita patrot
in c language it is necessary to define or declare the pre processors becouse it contains the all types of input and output syntax defination i.e printf is a output syntax and scanf is a input syntax.
without a pre processor we cant write a c program.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the difference between ++a and a++?
What is const volatile variable in c?
Was 2000 a leap year?
using only #include
What is a substring in c?
In a byte, what is the maximum decimal number that you can accommodate?
Write a program to implement queue.
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Explain what is the heap?
Can a void pointer point to a function?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
define string ?
I came across some code that puts a (void) cast before each call to printf. Why?
What are the different types of endless loops?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only