Sunday, 4 May 2014

What is the difference between reference and pointer?

A pointer can have Null value ,int *p=Null means, it is not having any address to point . while reference can't have &p=Null(not allowed).

2- address can be changed in case of pointer while in case of reference it can't b. 

int a=10;
int *p =&a,
int b=30;

int *p=&b; valid now, but in reference it's not possible.

How to improve applications performance which is hosted in cloud ?

Improving the performance of an application hosted in Microsoft Azure involves a combination of optimizing your application code, leveraging...