How does free() know explain how much memory to release?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of void pointer?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
Which is better malloc or calloc?
How to avoid structure padding in C?
How do you do dynamic memory allocation in C applications?
write a program to find lcm and hcf of two numbers??
How to receive strings with spaces in scanf()
main() { clrscr(); } clrscr();
how to reverse string "Hello World" by using pointers only. Without any temp var
what do the 'c' and 'v' in argc and argv stand for?