Describe how arrays can be passed to a user defined function
No Answer is Posted For this Question
Be the First to Post Answer
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
How do you do dynamic memory allocation in C applications?
What is use of #include in c?
What is string constants?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is meant by operator precedence?
why Language C is plateform dependent
Write a program in c to replace any vowel in a string with z?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Do you know null pointer?
2. What does static variable mean?