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
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Ow can I insert or delete a line (or record) in the middle of a file?
What is #line?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Tell me what are bitwise shift operators?
What is clrscr in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What's the difference between constant char *p and char * constant p?
Explain how many levels deep can include files be nested?
What is p in text message?
Write a program to print ASCII code for a given digit.
What is the difference between text and binary i/o?
What are data types in c language?
What is the explanation for cyclic nature of data types in c?
What are the applications of c language?