/*AN IMPLEMENTATATION TO GET MAX. VALUE OF INT ..OR CHAR || UNSIGED CHAR ETC*/
#include<stdio.h>
#include<stdlib.h>
int main()
{
char temp;
//temp=malloc(1);
temp=-130;//max.value assigned to int |unsigned int is -999999999 to 999999999
//max value assigned to char is -128 to 127 as it is if i want to display -129;it will display-129to127-130to126 -131to125 &unsigned char is only present 0 to 255 properly ;if want to display -1 will display 255;-2 to 254;-3 to 253 so on..behind -255 again starts frm 255then 254 then 253....so..on....