Can someone help me translating this python code into C?
I'´d like to make this code like an app for a friend's smartwatch and I'm still learning Python and I can't get into C. The purpose is to give a prediction everytime you click your smartwatch's button so if someone can develope it for what I want that would be nice. If someone could it would be pretty nice. I'm spanish so variable are written in Spanish sorry :). This is just the title of the app # La bola de la suerte de los examenes q = "Atento a las unidades." w = "Deberías haber estudiado más." e = "Mereces suspender." r = "Me da a mí que no has estudiado suficiente." t = "Eres un/a inútil." y = "Por supuesto." u = "Claro que sí campeón." i = "Por supuesto" o = "Sisisisi, sin duda" p = "Bueno, no mucho" a = "No cabe duda que sí" import random r_number= random.randint(0,11) list= [q, w, e, r, t, y, u, i, o, p, a] print (str(list[r_number]))