what is a function method?give example?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
Explain the difference between call by value and call by reference in c language?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
why we use "include" word before calling the header file. is there any special name for that include??????
What functions are used in dynamic memory allocation in c?
Write a program to implement queue.
Hi, main() { } Is a user defined function or Built in Functionn
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
How do I create a directory? How do I remove a directory (and its contents)?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Write a program in C to reverse a number by recursive function?
simple c program for 12345 convert 54321 with out using string