How to compare array with pointer in c?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What the advantages of using Unions?
What are register variables in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
what is meant by c
Differentiate between #include<...> and #include '...'
triangle number finding program...
what is difference between c and c++
What is the difference between arrays and pointers?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,