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 |
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
What is #include in c?
What is bubble sort technique in c?
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
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
What does. int *x[](); means ?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
Why is structure padding done in c?
LOGIC OF Bodmas?
What is malloc return c?
Explain the concept of "dangling pointers" in C.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?