Which sort is best for the set: 1 2 3 5 4
a) Quick Sort
b) Bubble Sort
c) Merge Sort
What problems might the following macro bring to the application?
List the features of oops in c++?
Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
Write a struct time where integer m, h, s are its members?
how to swap two strings without using any third variable ?
How do you establish a has-a relationship?
In a function declaration, what does extern mean?
Explain about profiling?
Explain the scope of resolution operator.
1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?
Which c++ compiler is best?
Is c++ a float?