How many parameters should a function have?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between NULL('\0') and 0?
to find the closest pair
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
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
What are macros in C?
What is identifiers in c with examples?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Write a programe print the sum of series 0,1,2,.....10
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
Is an array parameter is always "by reference" ?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
What are the string functions? List some string functions available in c.