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 value of a[3] if integer a[] = {5,4,3,2,1}?
Explain the process of converting a Tree into a Binary Tree.
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
How can I access a memory located at certain address?
what is a constant pointer in C
Write a simple program to find the size of different basic data types in C.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Which command is more efficient? *(ptr+1) or ptr[1]
what is develop in c language
main() { clrscr(); } clrscr();
write a program to display reverse of a number using for loop?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.