Posts by Armoz • 67 points
3 posts
-
3
votes4
answers8575
viewsQ: How to take system time and save in a variable?
How to pick the current time and save to a variable in c++?
-
1
votes1
answer1787
viewsQ: How to create multiple . txt files?
How do I create multiple . txt files in c/c++ ? I have that function: tocopy(){ FILE *file = fopen("Teste.txt", "w"); fclose(file); } But it only creates a Test.txt file…
-
2
votes1
answer874
viewsQ: How to store letters in a variable and display them all at the end by forming a phrase/word
I’m holding up programming and I’m making a code where I’m supposed to turn a binary code into a phrase. I’m turning the binary value into decimal, and taking the decimal value and comparing the…