write a C and C++ programme to implement the
A,bubble sort
B,quick sort
C,insertion sort
D,sequential search
E,binary search
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Why ordinary variable store only one value
which types of data structure will i use to convert infix to post fix???
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
What is 'bus error'?
What is this infamous null pointer, anyway?
What is the sizeof () a pointer?
list the no of files created when c source file is compiled
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?