Thomas shelby
Anonymous
PS
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?
Victor D.
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
a Semicolon
It took 3 years
a Semicolon
But I want to learn something in some weeks
Anonymous
Victor D.
a Semicolon
ꍏꈤꀸ
Try php
php developers be like : 🗿
Anonymous
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
a Semicolon
Anonymous
When use java and springboot
Victor D.
ꍏꈤꀸ
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
a Semicolon
Victor D.
ꍏꈤꀸ
Victor D.
a Semicolon
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
a Semicolon
a Semicolon
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
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.
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"
a Semicolon
a Semicolon
Victor D.
True
Type #cppbookguide and follow that link to find recomendations about c++ books and other learning materials
Anonymous
#cppbookguide
a Semicolon
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