#include using namespace std; //file name : Compare_C_CPlus1.cpp int main(void) { cout << " Hello World \n"; cout<<" ---- C Way ------------------\n"; int *n1; n1 = (int *)malloc(10*sizeof(int)); n1[5] = 10; cout<<"\n What is n1 C : "<< n1 << " value " << n1[5] <