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

Can math operations be performed on a void pointer?

0 Answers  


out put of printf(“%d”,printf(ram));

5 Answers  


Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.

3 Answers   Google,


which do you prefer C or Pascal?

1 Answers  


Why is c so popular?

0 Answers  


how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");

9 Answers   TCS,


What does it mean when the linker says that _end is undefined?

0 Answers  


What is pragma in c?

0 Answers  


write a proram to reverse the string using switch case?

0 Answers   Syntel,


What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value

2 Answers   DynPro, TCS,


Explain what is a stream?

0 Answers  


What are the main characteristics of c language describe the structure of ac program?

0 Answers  


Categories