- 👋 Hi, I’m @PRX1TT1LOL.
- 👀 I’m interested in Game Development and Programming.
- 🌱 I’m currently learning a couple of programming languages like C, C++ and others.
- 💞️ I’m looking forward to create my own programming languages and other stuff. Its gonna be better, modern, performant, efficient and cleaner versions of C and C++!
- 📫 How to reach me: ...
- 😄 Pronouns: He/Him/His.
- ⚡ Fun fact: I am probably stupid and don't know what I'm doing right now.
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <math.h>
#include <float.h>
int main(void) {
// nani.
// some c code.
char initials[] = "P.B.";
int num1 = 328509;
int num2 = 22667121;
int root1 = cbrt(num1);
int root2 = sqrt(sqrt(num2));
printf("Hello! %s are my initials.\n", initials);
printf("%d is a number and it's cube root is %d.\n", num1, root1);
printf("%i is also a number and it's 4th root is %i.\n", num2, root2);
return 0;
}