what is the maximum no. of bytes calloc can allocate
Answer Posted / divyanka mishra
depends on the size of RAM. it can allocate memory as per
as RAm's size.
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What does d mean?
List the variables are used for writing doubly linked list program.
I came across some code that puts a (void) cast before each call to printf. Why?
What are the types of data types and explain?
What is strcmp in c?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is the modulus operator?
In a switch statement, what will happen if a break statement is omitted?
Explain what header files do I need in order to define the standard library functions I use?
What is mean by data types in c?
Write a program to swap two numbers without using third variable in c?
What is a macro in c preprocessor?
What is graph in c?