void main(int n)
{
if(n==0)
return;
main(--n);
printf("%d ",n);
getch();
}
how it work and what will be its output...............it any
one know ans plz reply
wat are the two methods for swapping two numbers without using temp variable??
Why is it important to memset a variable, immediately after allocating memory to it ?
wat are the two methods for swapping two numbers without using temp variable??
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
What are the data types present in c?
Is struct oop?
Explain the advantages and disadvantages of macros.
What do you mean by c what are the main characteristics of c language?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
Calculate 1*2*3*____*n using recursive function??
write a program to copy a string without using a string?
What is signed and unsigned?