what is the maximum no. of bytes calloc can allocate
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / maruthi prapulla kumar(bb09105
n Bytes Depending up on the size of the RAM If RAM size is
less it is less Ram size is high Its High
Is This Answer Correct ? | 1 Yes | 2 No |
write a program in c language for the multiplication of two matrices using pointers?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What's the right way to use errno?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
write a program to generate address labels using structures?
could u able to tell about suresoft technical session
Write a program to compute the following 1!+2!+...n!
what is function pointer?
What is meant by type specifiers?
what is the difference between #include<> and #include”…”?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?