What is modeling?
No Answer is Posted For this Question
Be the First to Post Answer
What is preprocessor with example?
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); }
what is available in C language but not in C++?
10 Answers CTS, TCS,
Is an array parameter is always "by reference" ?
What does void main () mean?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Why header files are used?
Why clrscr is used in c?
Write a function that will take in a phone number and output all possible alphabetical combinations
what is link list?
Why are all header files not declared in every c program?
whether itis a structured language?