I can't tell from your total lack of comments and meaningless variables names what tu is supposed to be.
Lines 26, 38, 52, 61: It is NOT legal to call main().
Line 31-32: Very poor style to use the same variable name for global and local variables.
Line 37: Since nu[] is a local variable, it goes out of scope when Register() exits. What is the point of asking for the user name and password, if these variables go out of scope?
Lines 49-50: You're trying to compare strings to an int (or int array). Whichever you intended, these are not types that can be compared.
Did not mean to sound harsh. You did post in a public forum asking strangers to read and understand your code.
I see lots of login programs posted on this forum with varing degrees of sophistication. Since you did not post a description of what your login program is supposed to do, so I can only guess.