Comment on
Which are your most useful apps?
Reply in thread
Yes, Aegis is the best TOTP app. I recently switched from Authy to Aegis and it is pretty good.
Comment on
Which are your most useful apps?
Reply in thread
Yes, Aegis is the best TOTP app. I recently switched from Authy to Aegis and it is pretty good.
Comment on
Odysee android app?
Reply in thread
Comment on
Odysee android app?
Reply in thread
Yeah, but odysee has its own app
Comment on
I was a Flat Earther for 3 years
i don't get it
Comment on
Pixelfed's new UI. Coming soon🚀
Reply in thread
It is basically a clone of instagram.
Comment on
Odysee android app?
Reply in thread
Here is the tweet from the odysee team
Comment on
What is the use of a void function if it doesn't return a value?
Reply in thread
Oh... so cout << and return don't mean the same thing.
Comment on
What is the use of a void function if it doesn't return a value?
#include <iostream>
using namespace std;
void sum()
{
int a, b, s;
cin >> a >> b;
s = a + b;
cout << s;
}
int main()
{
sum();
}
Also why does this function return a value?
for example, a = 45 and b = 45
I get the sum as 90
Comment on
What is the use of a void function if it doesn't return a value?
Reply in thread
yes but sum() gives the value 90 in the main function. Why is that?