Anonymous
Guys
Anonymous
I need help
Anonymous
Can you please suggest major project ideas
Talula
Can you please suggest major project ideas
Make AI based OS that would take over the world in 3 months.
Talula
Can you help me? Please elaborate
You requred for "Major Project idea" I gave you a Major Project Idea.
Jussi
Dont request for projects please. Use your own imagination please
Anonymous
Dont request for projects please. Use your own imagination please
Using but not getting, thought you guys can help, because I'll put in the work afterall
Talula
Are you serious?
Yes... that is a Major Project... isn't it?
Anonymous
Yes... that is a Major Project... isn't it?
I need something which can be made in 2-3 months
Talula
Make an game of Kabbadi on Android.
Brijesh
Hi I am human
Jussi
Make an game of Kabbadi on Android.
How can you code C++ on android though?
Talula
How can you code C++ on android though?
https://www.sitepoint.com/using-c-and-c-code-in-an-android-app-with-the-ndk/
Anonymous
How can you code C++ on android though?
There are two ways 1) using NDK 2) using Qt
Jussi
Oh,wonder how that works then
Anonymous
Just google it
Talula
Oh,wonder how that works then
Click the link I sent above.
Anonymous
How
Anonymous
I’m human
Anonymous
Please who has good hacked smpt and rdp
Anonymous
??
Anonymous
How you all mean report
Anonymous
Don’t I have a freedom of speech here
Anonymous
Hell yeah I do
Anonymous
Sometimes I have a feeling these are some trolling bots
Anonymous
What is the use of double pointers or ** Why we will use it in our program can anyone gave me a simple example My book examples are somewhat tricky My teacher only said that it is a pointer which is pointing to another pointer or holding address of any other pointer
Anonymous
She’s right
What? 😒😒😏😏😏 I asked something Regarding ** Of c language So can you tell me admin
Anonymous
Your teacher is right
But I couldn't get what it actually meant A pointer is holding address of another pointer 🤔🤔🤔🤔 Why I will use it
Mat
Usually they're used to create array of arrays, or a matrix
Mat
Can you give one simple example
int mat[2][3]; Do you know what this is?
Anonymous
I have studied about it in computer science and maths
Suresh
Only used for accessing multi dimensional array or matrix?
Suresh
Anyother use case
Anonymous
int mat[2][3]; Do you know what this is?
So where we have used here **
Mat
You can write it as int **mat; mat = malloc(sizeof(int*)*2); for(int i = 0; i < 2; i++) { mat[i] = malloc(sizeof(int)*3); }
Anonymous
If I've const char a[][] = {"fir","sec","thi"}; How to point to a?
Anonymous
This array is incorrect
Anonymous
why?
Anonymous
This array is incorrect
If the no of columns are 3 and rows are filled as 1 Then @superrealusername
Anonymous
Anonymous
Are you blind?
Anonymous
Are you blind?
kindly reply to some comment.
Anonymous
You initialized your 2d array wrong way, completely.
Mat
Are you blind?
Point to the error and offer at least a tip to the correction
Anonymous
This array is incorrect
I mean const char a[3][1]= {"first", "second", "third" };
Anonymous
Anonymous
We are talking about his mistake
Anonymous
Is it the column size or the row size that we can skip while declaration?
Anonymous
@Mayaletitgo do you know what mat[i] = malloc(...) means here? what does it do?
Well my school textbook have never used this complex function malloc() My teacher said that I can explain you but you will learn about it in university 😁😁😁😄😁😆 May be you cannot understand
Anonymous
Is it the column size or the row size that we can skip while declaration?
Oh 😁😁😁😁 We can never skip both row or coloum size Only one either row or coloumn
Anonymous
What is mat[i]?
Anonymous
I'am asking which one and not both.
Anonymous
Is it some integer or what?
Anonymous
okk
Anonymous
What is mat[i]?
It's a 1d array
Anonymous
First of all it's a pointer to pointer.
Anonymous
Anonymous
How is it double
Anonymous
Really?
Anonymous
You can write it as int **mat; mat = malloc(sizeof(int*)*2); for(int i = 0; i < 2; i++) { mat[i] = malloc(sizeof(int)*3); }
Sorry I know nothing about malloc as I have never read about it So cannot say anything about it It seems tough concept for high school guy
Anonymous
^
Yes here **mat is a double pointer it was pointing to other pointer
Mat
Sorry I know nothing about malloc as I have never read about it So cannot say anything about it It seems tough concept for high school guy
It's a pretty stupid concept that you can search online :) It's funny how you didn't even try yo understand my code before starting with other questions
Anonymous
It's a pretty stupid concept that you can search online :) It's funny how you didn't even try yo understand my code before starting with other questions
Ok but I understand you admin actually it(malloc) was not in our syllabus/curriculum and I already have big assignments to complete recently (yesterday )she send a big assignment of 28 questions of pointers That's why I asked about ** Because it's very different Thanks for your help admin