C Programming and Technical Programming Output

*
**
***
****
**********
****
***
**
*
Logic to print this

Read Solution (Total 8)

C Other Question

integer x = 0 // statement 1
integer sum = 0 // statement 2
while ( x < 10 ) // statement 3
{
sum = x*x*x // statement 4
x = x + 1 // statement 5
}
print sum // statement 6
every element of a data structure has an address and a key associated with it.a search mechanism deals with two or more values assigned to the same address by using the key what is this search mechanism?
1)linear search 2)binary search 3)hash coded search
4)none of these