accessing & clearing memory using C

Hi

Im new to the world of embedded systems.. Can anyone give me any examples of accessing memory locations using C as well, as say, clearing them ..

For example, if i have to clear addresses from 3000h to 3300h, how do i go about doing the same ???

thanks heaps..

techie

Reply to
techie.embedded
Loading thread data ...

Embedded or not;

memset( (void*)0x3000, 0, 0x0300 );

...if by "clear" you mean "set to zero", and provided you have a C-library available...

Reply to
Anders

hi

thanks for that..

Reply to
techie.embedded

ElectronDepot website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.