Dima
klimi
Dima
klimi
Francisco
I've used OpenGL, SFML and Unity, and I've learnt the most with SFML than any other. OpenGL is too low level, and Unity is too high level
Asiman
python isn't necessary for me, i could learn any technology(at least i hope)
klimi
Asiman
i'm interested in gamedev as software development industry not as implement mine game ideas
Mar!o
I've used Vulkan to create my own engine. It's by far the most challenging but fun way!
klimi
i haven't done any computer school
klimi
if i do my finals on my high school i am going to go to computer science to uni
Mar!o
Francisco
By that mean, you can also learn that (cos(t), sin(t)) is a point in the circle of radius 1, but those are maths you should already know before digging deeper into graphics
Anonymous
hi. I get a error of double free or corruption (out) and I don't know why. When I remove the delete [] of two memory dynamics work without errors
Anonymous
https://pastebin.com/MPggrghh
Anonymous
The source, the error is with delete [] coordx; delete [] coordy;
Brian
Hello guys👋. Its 11:30pm East African time🇰🇪. People are deeply asleep and i wanna join them. See u tomorrow programmers
Copy that🔅
Dima
what
Dima
lol
Anonymous
I dont understant ...
Artöm
Check if count can be more than DIM_MAP
Anonymous
ok
Anonymous
but it cant be constant because I need to calcule the size of the array first
Artöm
Then this array needs to be dynamic
Francisco
Anonymous
Ok
Anonymous
I fixed that but I still have the error
Anonymous
double free or corruption (out)
Anonymous
I still have this error. And I fixed the array issue ...
Artöm
Anonymous
ill give him a text
ey you have a email address @sitischu.com
oh wait you are in all the devs groups too
Anonymous
yeah
Anonymous
Thank you very mutch! Fixed
klimi
Anonymous
yes
i didn't see that lol
klimi
Sebastian
Thanks am in
Dima
@mmarinasex69 yes
Dima
/ban @mmarinasex69
Alion🦁
Teo
/best-book
Anonymous
Can anyone help me with the numbering from 11 to 19?#include <iostream>
using namespace std;
int main()
{
int row;
int nasterisk;
cout << "Line" << "\t\t" << "Asterisk" << endl;
for(row=1;row<=10;row++)
{
cout << row << "\t\t";
for (nasterisk=1;nasterisk<=row;nasterisk++)
{
cout << "*";
}
cout << endl;
}
for (row=10;row>1;row--)
{
cout << "\t\t";
for (nasterisk=1;nasterisk<row;nasterisk++)
{
cout << "*";
}
cout << endl;
}
return 0;
}
Faruk
Faruk
please help me
Faruk
this parallel programming in Linux
Anonymous
Anonymous
Answer is -3 how
Dima
Anonymous
Explain please
Anonymous
If i will remove brac
Anonymous
Anonymous
guys how do i add an external header to qtcreator :c , i added the header file in the project's dir too but that doesnt work :(
Anonymous
https://files.shadowlabs.cc/TYRONE.mp4
Afoo_trader
Am new to c programming and I need a guide
Anonymous
Given two non-negative integers A and B, and limits X and Y,find the smallest integer Z which lies between X and Y such that (A&Z).(B&Z) is maximum possible.
&=Bitwise
Can anyone help me in this
Anonymous
Ya
Anonymous
Anonymous
Anonymous
Hint
Use loop and if/else
Serenity
Can somebody help me what is wrong with my matrix multiplication function ?
Serenity
void mult_mat(int mat1[][SIZE], int mat2[][SIZE], int result_mat[][SIZE])
{
int i, j, k;
for (i = 0; i < SIZE; i++)
{
for (j = 0; j < SIZE; j++)
{
for (k = 0; k < SIZE; k++)
{
result_mat[i][j] = (result_mat[i][j]) | (mat1[i][k]) & (mat2[k][j]);
printf("%d", result_mat[i][j]);
}
}
}
}
Serenity
I am doing it and it still does not work
Serenity
The multiplication is defined a little differently than regular matrix multiplication but it has the same functionality
Nils
Serenity
logical multiplication ( two matrices filled with zeros and ones) , and + is considered as "OR" and * is considered as "AND"
Serenity
I have two 5 VS 5 matrices ,filled with 1's and zeros , I just need to execute a simple logical multiplication and store the result in a third result matrix.
Anonymous
Anonymous
also, since the matrices only contain 1 or 0, why not use && and ||?
Serenity
That is what I have done before
Serenity
I have used bitwise operators before since the relations between the numbers are of OR or AND type..
Serenity
But the resultant matrix has somehow more 25 elements and I have no idea why
Serenity
more than
Serenity
Serenity
The long string of bits below is the resultant matrix's values..