What is the heap?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the absolute value of given integer using Conditional Operators
How does variable declaration affect memory?
Explain what does the function toupper() do?
What is meant by recursion?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What is the auto keyword good for?
How can I write a function that takes a format string and a variable number of arguments?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
what's the return value of malloc()
write a program to display reverse of a number using for loop?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none