User profile: yj1214

User info
User name:yj1214
Name:idk
Location:idk
Website:http://idk
Bio:I started with Python, then I moved to C++, then C and then now i'm learning Assembly...
Statistical data
Occupation:Student
Skills:C
C++
Assembly
Python
History
Joined:
Number of posts:120
Latest posts:

is it possible to make command prompt with c?
It it possible to program command prompt using c? is it possible to make a program that can run a...

Good graphical math sources?
I'm starting to learning about drawing circles, waves etc. using OpenGL and it involves some math to...

change condition in if statement
So that means if first condition works, it skips all rest conditions?

change condition in if statement
[code] bool x = false; if(!x){ x = true; }else{ printf("Hello!"); } [/code] Shouldn't this...

Assigning value and compare at the same time?
[code] int y = 1; int x = y == functionThatReturnsOneOrTwo(); [/code] What does above code do? How ...