how to make c program without a libary?
e.g.#include<stdio.h> libary is not in c progaram.

Answers were Sorted based on User's Feedback



how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram...

Answer / 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

how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram...

Answer / 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

More C Interview Questions

Why do we use header files in c?

0 Answers  


What is #define?

0 Answers  


Can anyone tell what is stack overflow? what precaution we should take?

1 Answers  


consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48

1 Answers  






can we access one file to one directory?

1 Answers  


When should I declare a function?

0 Answers  


N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3

3 Answers   Honeywell,


How can you increase the allowable number of simultaneously open files?

0 Answers  


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

0 Answers   HCL,


main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 Answers   Ramco,


Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.

1 Answers   Wipro,


Categories