How can you determine the size of an allocated portion of memory?
No Answer is Posted For this Question
Be the First to Post Answer
What are the parts of c program?
What is the difference between static and global variables?
What is the relation between # and include<stdio.h>
what do you mean by inline function in C?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
wt is d full form of c
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What are qualifiers?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
how do you redirect stdout value from a program to a file?
What is alloca() and why is its use discouraged?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above