This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, char *argv[]) { | |
int userInput = 2156; //number to convert | |
int base = 16; // change base here | |
int anws[10] = {}; //couldn't get dynamic array to work. Do not like this way. | |
int count = 0; | |
NewerOlder