C
ckpradip
This is my code
#include <stdio.h>
#include <stdlib.h>
int main ( void )
{
unsigned char *ptr = ( unsigned char ) 0x00070000;
printf ( " %c", *ptr ); /* getting segmentation fault here */
return EXIT_SUCCESS;
}
/* I know that I get this because I am trying to access protected
memory */
/* But I need to get these contents [ used to find SMBIOS identifier
'_SM_ ] */
#include <stdio.h>
#include <stdlib.h>
int main ( void )
{
unsigned char *ptr = ( unsigned char ) 0x00070000;
printf ( " %c", *ptr ); /* getting segmentation fault here */
return EXIT_SUCCESS;
}
/* I know that I get this because I am trying to access protected
memory */
/* But I need to get these contents [ used to find SMBIOS identifier
'_SM_ ] */