Hi Please find the attached code for the issue i faced. Can anyone hel me out from this.
Hi All, Is there any way to convert extended ASCII charters(from the range 128-255) to its corresponding decimal values programmatically? Brief:: standard ASCII charters ranging from 0-127 we can store it in simple character variable and we do the conversion like below example. e.x:1) for Standard ASCII charter to decimal conversion char myString [] = "+"; // input is '+' corresponding decimal value is 43. printf("myString decimal val = %d, size = %d, %d\n",myString[0], sizeof(tmpBuffer)); O/p: myString...