how to convert a code language to a readable language?
Do you mean you have a piece of code in a language, for example C, and you want it to be more readible? Or do you want pseudo code?
i mean the code like morse code that we use in ,as passwords like(******).who this can be converted into simple language and also tell me what is pseudo code?
Sorry I still do not fully understand what you are questioning. Passwords are just characters that are masked by other characters (and possibly encrypted). Removing the mask would show you the character sequence. There are some tools that remove the mask for passwords of your (already installed) programs. Pseudo code is a form of writing a piece of code in readible format, like this function: void printHelloWorld() { for (int i = 0; i < 5; i++) { System.out.println("Hello World!"); } } Would be written in pseudo code like this: from 1 to 5: print "Hello World" The point of this is to specify algorithms or instruction sets in a readible format, independent of programming languages.
sorry, pseudo code should be saying "from 0 to 5".
Or you simply do Python. Which is a readable programming language. for i in range(5): print "Hello World!" Or even simpler: print "Hello World!" * 5
@fabianhjr You'd get two different outputs from those snippets. I agree, good Python is virtually pseudo code, but there's bound to be times that an algorithm could be written more cleanly than you can manage in pure Python.
Join our real-time social learning platform and learn together with your friends!