What is the role of this pointer?
No Answer is Posted For this Question
Be the First to Post Answer
How do I get an accurate error status return from system on ms-dos?
How can I avoid the abort, retry, fail messages?
What is the main difference between calloc () and malloc ()?
what are the various memory handling mechanisms in C ?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Is an array parameter is always "by reference" ?
what is a NULL pointer?
explain what is fifo?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
what is the use of operator ^ in C ? and how it works?
List the different types of c tokens?
What is variable declaration and definition in c?