Hi All,
Please expain me, in below giving statements which one is efficient.
int i=0;
i = i + 1;
or
i++;
2. In We Allocate the memory using malloc. between somewhere after allocating memory if our programming crashed.Then Allocated memory will be immedately freed by OS or OS will free this memory after some time period.
Thanks in Advance.