write a program to display & create a rational number
Answer Posted / hansda.hansda.charan493
in c++(language)
| Is This Answer Correct ? | 12 Yes | 6 No |
Post New Answer View All Answers
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain what is dynamic data structure?
How we can insert comments in a c program?
What is the auto keyword good for?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is a program flowchart and explain how does it help in writing a program?
What is the benefit of using an enum rather than a #define constant?
What is bin sh c?
What are high level languages like C and FORTRAN also known as?
What are enumerated types?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Why c is procedure oriented?
There seem to be a few missing operators ..
Explain heap and queue.