so what do you get doing *pStr? the actual character? And what do you increment if you do pStr++? the address of the pointer? Further on I dont get the line where you check ++len == 1, would be nice if you could explain a little more in detail. Thank you.
For example I need to write a program that recognizes repeated sentences. For example a trigram. ‘one two three one two three one two three’ my program should output ‘one two three’ (3) ‘two three one’ (2) ‘three one two’ (2) Could really use some help with this one
can you teach us how to make scripts, use mouse function to find specific color or thing on screen and move to that location and have it click and other stuff? thx
Rushabh, it seems you're looking for automation scripts. Can you give a specific example so I can focus on it and also what language do you want me to use?
yah sure, i know how to use c, and im looking to make scripts to do things like interact with a game (runescape) and do simple task like check events and click. Im sure if you google runescape scripts/bots , youll get the idea of what i want to learn to make using c if possible
Looks like there is a lot of content already on this on youtube and the net that you can look at. I am only focusing on teaching people to program and become good with solving technical problems and be more productive with their coding skill.
This means, let's count the number of letters in this word and if we just started with the first letter of a new word, then let's increment the number of words we have so far.
does it stil work? when we first gave a space or tab before Writing a letter or word
so what do you get doing *pStr? the actual character? And what do you increment if you do pStr++? the address of the pointer? Further on I dont get the line where you check ++len == 1, would be nice if you could explain a little more in detail. Thank you.
Can you show us how to return a single word that we have counted?
what if the word was one caractere like i am hungry its count 2 words
Can this be applied to pattern matching as well ?
For example I need to write a program that recognizes repeated sentences. For example a trigram. ‘one two three one two three one two three’ my program should output
‘one two three’ (3)
‘two three one’ (2)
‘three one two’ (2)
Could really use some help with this one
nice! how did you figure this out?
Wow thanks for this video cos I tried to do it 4 hours but it failed before I watch the video .good keep it up
I need help
What is the problem
the fuck just happened
can you teach us how to make scripts, use mouse function to find specific color or thing on screen and move to that location and have it click and other stuff? thx
Rushabh, it seems you're looking for automation scripts. Can you give a specific example so I can focus on it and also what language do you want me to use?
yah sure, i know how to use c, and im looking to make scripts to do things like interact with a game (runescape) and do simple task like check events and click. Im sure if you google runescape scripts/bots , youll get the idea of what i want to learn to make using c if possible
Looks like there is a lot of content already on this on youtube and the net that you can look at. I am only focusing on teaching people to program and become good with solving technical problems and be more productive with their coding skill.
Plzzz makee this program convert of numbers in to words in c programming
Like 5347 five thousand three hunndered and forty seven
what does this expression mean else if (++len == 1 )
This means, let's count the number of letters in this word and if we just started with the first letter of a new word, then let's increment the number of words we have so far.
i need your help
Hi, How can I help you?
good job
Thank you :)
You are too fast for a tutorial
Sorry. I think if I slow down it will get boring?
A tutorial is suppose to teach someone who doesn't know how to do something. The pace you go at is far to fast to teach a beginner. @@Programmertube
@@shaowlnkngfu3803 sorry, it Is mainly due to edits as I am not good at editing and cutting out mistakes from my videos ;)
hello
#include
#include
using namespace std;
int wordCount(const string& str);
int main()
{
string str = "How are you?";
cout