#include <stdlib.h>
#include <inttypes.h>
int main()
{
uint32_t a = 7, b = 3, c, r;
c = a / b;
r = a % b;
return( 0 );
}
ARC Toolchains for boot loaders components of some SoCs (such as Amlogic System on Chip)
#include <stdlib.h>
#include <inttypes.h>
int main()
{
uint32_t a = 7, b = 3, c, r;
c = a / b;
r = a % b;
return( 0 );
}