top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

If ASCII value of 'x' is 120, then what is the value of the H, if H = ('x' – 'w' ) / 3; ?

0 votes
474 views
 if x=120
  then H = ('x' – 'w' ) / 3;
posted Dec 21, 2016 by Ujjwal Mehra

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
0 votes

Given an unordered array A of size n and integer x. What is the best complexity to find two elements in A whose sum is x?
Share the algo, its complexity and if possible C code.

+1 vote

Write a recursive function:

int sum( int x, int max ) 
{ 
  /* complete the code */ 
} 

that calculates the sum of the numbers from x to max (inclusive). For example, sum (4, 7) would compute 4 + 5 + 6 + 7 and return the value 22.

Note: The function must be recursive.

...