C programming questions requirements: You CANNOT call any library functions // 1
ID: 3666963 • Letter: C
Question
C programming questions
requirements: You CANNOT call any library functions
// 11. Write a function to convert an unsigned integer to a decimal string.
// For example if the integer has decimal value 52 the string would be ?52?.
void myUInt2Str(unsigned int num, char* string) {
// TODO: add your code here
string=num;
return string;
}