the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called
a) nested function
b) void function
c) recursive function
d) indifinite function
No Answer is Posted For this Question
Be the First to Post Answer
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
Why do we need a structure?
how to introdu5ce my self in serco
How do we make a global variable accessible across files? Explain the extern keyword?
write a program which counts a product of array elements lower than 10.
How do I convert a string to all upper or lower case?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
Explain what are the advantages and disadvantages of a heap?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What are pointers in C? Give an example where to illustrate their significance.
Why we write conio h in c?