Can a function argument have default value?
No Answer is Posted For this Question
Be the First to Post Answer
Write a code on reverse string and its complexity.
Explain is it better to bitshift a value than to multiply by 2?
find largest element in array w/o using sorting techniques.
ABCDCBA ABC CBA AB BA A A
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
what are brk, sbrk?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
How to calculate sum
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
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
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?