how to make program without <> in library.



how to make program without <> in library. ..

Answer / gandhi priyank

hello
and your answer is a very easy you can write c progaram
then you can write libary #include<stdio.h> insted of
#include"stdio.h"

Is This Answer Correct ?    16 Yes 3 No

Post New Answer

More C Interview Questions

Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

2 Answers  


What is #include in c?

0 Answers  


What is bubble sort technique in c?

0 Answers  


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

0 Answers  


please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }

3 Answers  


What does. int *x[](); means ?

0 Answers   Wilco,


what is output of the following statetment?Printf(“%x”, -1<<4); ?

5 Answers  


Why is structure padding done in c?

0 Answers  


LOGIC OF Bodmas?

1 Answers  


What is malloc return c?

0 Answers  


Explain the concept of "dangling pointers" in C.

2 Answers  


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

0 Answers  


Categories