What is calloc malloc realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
What do you know about the use of bit field?
How does variable declaration affect memory?
What is the use of sizeof?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
How can a string be converted to a number?
Can true be a variable name in c?
what is the difference between NULL & NUL keywords in C?
wap in c to accept n number display the highest and lowest value
Write a program to show the workingof auto variable.
What is the diffences between Windows XP and Windows Visa
Method Overloading exist in c ?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;