from which concept of 'c', the static member function
of 'c++' has came?
how to get starting address of a running C program
What is main () in c language?
what are two kinds of java
What are header files in c programming?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
write a program to find the largest and second largest integer from an array
1. main() { printf("%d",printf("HelloSoft")); } Output?
What is a pointer and how it is initialized?
count the numbers between 100 and 300, that star with 2 and ends with 2
how to swap two nubers by using a function with pointers?
What are formal parameters?
Give me the code of in-order recursive and non-recursive.