Anonymous
PS
Is it correct to declare a main fn without its return type???
If it is void then i think it will be finely
PS
Fine*
Anonymous
Please someone can send for me a c language pdf for absolutely begginer ?
Suka
if you need 2.1 is 3 you can add your number with 0.9. next int = (int) var + 0.9
Yasas
Hi
ꍏꈤꀸ
Hi, why it's not working? std::wstring data = L"data|address|1|22|333"; std::wregex rgx(LR"(^[a-zA-Z]+|[a-zA-Z]+|\d+|\d+|\d+$)"); std::wsregex_token_iterator iter(data.begin(), data.end(), rgx, -1); PS: checked with regex101.com and data is matched
Anonymous
Guy I'm java developer please assist me
Anonymous
Give some resources ds and algo
Hitesh
Hey everyone! I am into domain of making antivirus softwares So when i started concepts related to it, i encountered words like lpstr , lpwstr, c_str( ), _T, like so many other pointers data types, HANDLE etc.... is there any good reference book and youtube channel for all these concepts If you have some material or reference sources than please help me
a Semicolon
What is the best way to learn C/C++ or any language?
a Semicolon
Programming
Like how? is there series of questions? To solve them and learn?
Victor D.
Have you coded anything? in any language?
a Semicolon
a Semicolon
Simple programs like String Reverse and Fibonacci something like that
Victor D.
Java little not too much
How did you learn to program in java?
a Semicolon
It took 3 years
a Semicolon
But I want to learn something in some weeks
Victor D.
But I want to learn something in some weeks
Well C/C++ will take more time than that
a Semicolon
ꍏꈤꀸ
Try php
php developers be like : 🗿
Anonymous
Anonymous
php developers be like : 🗿
are you really know this language?
Anonymous
Php very slow🐌🐌
Victor D.
Dave Plummer is a retired senior Microsoft's NT kernel programmer and he said that finally he is getting good at programming on C/C++
Anonymous
Why
well OOP, well site parsing, well cli with database access, 0 dependencies
Anonymous
Look guy's
Anonymous
According to tiobe index php stand 8 place
Victor D.
@a_semicolon just like you learn Java: Read books, watch videotutorials and code projects in the language you want to learn
Anonymous
When use java and springboot
Victor D.
Victor D.
You learnt C++ right?
I am still learning C/C++
a Semicolon
I am still learning C/C++
But atleast you know something right?
Victor D.
Yeah for sure
a Semicolon
May I know why you started learning it and where are you using it currently?
ꍏꈤꀸ
i think 1.5 year (for newbie in programming) it's enough to work as a Junior C++ developer
Victor D.
May I know why you started learning it and where are you using it currently?
Cuz i wanted to develop videogames. I develop applications for POS.
Victor D.
Most famous one. Try to guess
a Semicolon
what do you mean by basis?
Actually I'm working as QA in an Automation Team so I'm using Java to automate web applications using Selenium, there I'm using OOP concepts and other things also
a Semicolon
Victor D.
Play Station?
What? no. POS stands for Point of Sale
a Semicolon
What? no. POS stands for Point of Sale
Oh I thought it's related to some OS
Victor D.
What? no. POS stands for Point of Sale
Devices used to process electronic transactions, using credit cards
Anonymous
What? no. POS stands for Point of Sale
pc with touch display without keyboard and mouse
Victor D.
a Semicolon
So what kind of projects you did bro?
Victor D.
POS usually have IC Chip reader and a Magnetic stripe reader
Victor D.
So what kind of projects you did bro?
Maintenance and develop new features for POS applications
a Semicolon
Victor D.
Some "games" like a Conway's game of life and an Asteriod like game
a Semicolon
But you did that after completing the language like 80% or something right?
Victor D.
a Semicolon
After i learn the necessary stuff to code it.
So during learning that necessary stuff did you code something ot just keep reading the theory?
Victor D.
You cannot expect to learn every feature of the language to start using it.
Victor D.
I read somewhere in a programming book that "No one never learn programming by just reading"
Victor D.
True
Type #cppbookguide and follow that link to find recomendations about c++ books and other learning materials
Anonymous
#cppbookguide
a Semicolon
But I'm not sure why should I learn it😅
Milwaukee
Guys lm new to programming can you assist
Milwaukee
On the above assignment
B121065_Swoyam Siddharth Nayak
void insertathead(node* &head, int val){ node* p = new node(val); head->prev=p; p->next=head; head=p; return; }
B121065_Swoyam Siddharth Nayak
can anyone help in this above progarm of adding a node in the head of a doubly linked list
B121065_Swoyam Siddharth Nayak
class node{ public: int data; node* prev; node* next; node(int val){ data=val; prev=NULL; next=NULL; } }; this is the node class
Anonymous
can anyone help in this above progarm of adding a node in the head of a doubly linked list
Not sure what you are asking for. To add a node to your head, you just need to call the function you already provided