What is the difference between char array and char pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is gets() function?
Write a program of advanced Fibonacci series.
Explain what is a pragma?
can we declare a variable in different scopes with different data types? answer in detail
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
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); }
I want tcs placement papers of 2004-2009 , its urgent
What is dynamic dispatch in c++?
How to write the code of the program to swap two numbers with in one statement?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Are there namespaces in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.