Hello
Can someone help me with this?
Anonymous
Anonymous
Hello
Nader Should
i have made an app ( kayboard shortcuts ) and I wanna put it in Google play
( Google developer console )
And it need credit card
And 25$ .
I don't have the credit card .
And the money
case I'm jest a beginner .
Is there any way to put my app in Google play without the credit card ?
Please chat with me .
Dima
Mar!o
toytta
Hello there.
I'm doing a cache simulator in C. Could someone tell me how do I simulate the access using an associative cache with write-throught. Check if the address is in the cache (separate file) and if not, update the cache. Update hit or miss counters. Hit =on chace, MISS = not in cache
toytta
AL
https://www.youtube.com/channel/UCJYAXPO91iPFpY-62NjzdKA
Dima
AL
i think no. Sorry
Bishal
Thanks
AL
Dima
Dima
@K11M1 answer me in pm:<
Anonymous
Emir
what is the difference two function call?
scanf(“%c”, &ch);
scanf(“ %c”, &ch);
Anonymous
Hello
Anonymous
I want to know how I can embed a python file into c/c++ program. I just want the file to exist in the c/c++, it can be transferred to other devices as well.
Emir
So i want to get string from file, etc the string is : blabla\n
how can i that string include new line character
Anonymous
Emir
fscanf is just getting blabla not New line character
Emir
Emir
But i dont know which index has \n char, i have a dynamic string array(each string maks 40 byte) and im reading file to dynamic array, when i do that \n chars are gone
Anonymous
I don't think that's a problem
Emir
bla bla
bla2 bla3
->bla bla bla2 bla3
Anonymous
std::string str;
std::getline(std::cin, str);
str += '\n';
Emir
how can i do that? how include \n to string that i dont know which string has \n char
Anonymous
I know
Emir
So i have to read word by word
Emir
i want to change original file, wait a second i will send my algorithm
Emir
https://paste.ubuntu.com/p/xccTxv8TWF/
Here is my algorithm, dizi iz an dynamic array that each elements are 40 bytes string
Emir
fscanf(fptr, "%s", &kelime);
if right byte of str is a new line character i want to include that
Emir
i think that is not the important point because this is first class homework, it still wrong i know but i can each string 100 bytes, it will not problem for me. The problem is how i can (if there is) include the new line character
Emir
okay i will try this, thanks a lot
Nameful
Would the instructions be cached if I repeatedly called the function in a simple loop?
Nameful
Okay, thank you. I'm very new to taking cache into consideration when writing code, but it's very interesting.
Abdul Hannan
Biology Olympiad Preparation: https://dahakib.blogspot.com/2020/05/blog-post.html
klimi
Anonymous
oh
Sid_Cr7
i5 4th generation vs i3 7th generation .
which one is good ?
Sid_Cr7
but I need laptop for Programming so I am just asking a question man
Anonymous
Chaki
Hi, I was trying to use C++ library in my project. I used Cmake gui. First I clicked configuration, then generate and opened project in Visual Studio. Then I builded that project idk why exactly. But it takes a lot of time and haven't done yet and the file that project located is exponentially growing. So, my question is why is that happening and is there any resource that I can read in order to know what's happening. I'm new at C++
Chaki
Harsh
Harsh
make -j$(nproc --all)
Harsh
It'll show the object files being made
Harsh
Anonymous
Emir
Emir
What is the issue with that? I want to how linker work
Chaki
I was trying to use ensmallen : https://www.ensmallen.org/
Dima
the error goes away too fast
Anonymous
Anonymous
Dima
referenceless
Dima
/blue_text_must_click
Anonymous
/blue_text_must_click
Emir
what is the crt0.o ?
Emir
okay thanks a lot, i will search that for mac os c runtime libraries
Anonymous
Roses are red, violets are blue, unexpected ; at line 32
Anonymous
when are static member functions of class templates instantiated? when the class itself is instantiated? or when the function is called?