Anonymous
I have to say that COW cause an relatively recently exploit (github.com/themester/DirtyCOW)
Anonymous
Dragoș
Hello from Spain, an insomniac here
Anonymous
Anonymous
Hello from Uzbekistan.
Is there anybody that writing code for microcontroller.
Anonymous
Liam
lol
If Telegram supports nickname in group, "Liam Huang" would be "Liam Huang @ greeting from PRC".
Anonymous
That would be a nice feature to have but should it be based on your phone number's country code or geolocation?
Сардорбек
Hello programmers
Anonymous
How can I use sleep(1) condition ?
Roxifλsz 🇱🇹
Anonymous
Sorry not important. But I have a question. Is it possible to write natural logarithm ? If possible, how
Oluwaseyi
I am new in program... How do I start learning... So that I will be using right approach. Thanks
Srihari
Andrea
Сардорбек
m x n-dimensional and k given the number of matritsa (0<=k<=m). Matritsa sum and the sum of the elements in column k of the technique to build a program
Michael
rofl, the matritsa is matrix
Buck
Michael
Сардорбек
Oluwaseyi
Anonymous
Hello
Anonymous
hello
many
Currently I'm working on a telegram bot with C++. What is the communication method used by telegram server and client? Long polling? Websocket? or something else?
Anonymous
Anonymous
😂
many
Michael
The webhooks and https are the best.
Anonymous
https://youtu.be/cKAcdD4EwZw
Zarna
Hello, I want to who can help me?
Zarna
I want to make timetable in php
Anonymous
Wrong chat.
Zarna
But do not know how to code it
Zarna
Mostly there are based on calendar not time table
Anonymous
No much coding
Zarna
But i want to edit each of the column
Anonymous
Edit in xampp
Anonymous
Anonymous
Someone help me
Anonymous
/
Anonymous
How to remove uncomplete record in database
Zarna
Zarna
Anonymous
https://youtu.be/cKAcdD4EwZw
Hey guys are you like this video please subscribe this channel please this guys very awesome in programming
Anonymous
Anonymous
I learn it for you
Zarna
Can u help me? I do not how to set id for each of the column
Anonymous
Wait
Anonymous
Hang up
fbs
👍
Zarna
Okkkay
Roxifλsz 🇱🇹
Roxifλsz 🇱🇹
Don't beg for views, likes, etc. in this group
Anonymous
I have a confusion why "ampsersands" are being used here. Besides I see no reference of pointers to pointees
Anonymous
I mean normally this is how we work with pointrs https://bpaste.net/show/49ff09f20986
Anonymous
Where I am wrong?
Jeremy
*a pointer is pointing to address of int a in main, right?
Anonymous
Jeremy
Here's an excerpt from a stackoverflow question
Jeremy
You turn a value into a pointer with &:
int* p2 = &i; // pointer p2 will point to the address of integer i
Jeremy
you're passing the int a argument as a pointer in the call to the add function
Anonymous
Jeremy
in your paste, there shouldn't be a need for a pointer, right?
Jeremy
it's all in the same scope
Anonymous
Jeremy
I'm not a C programmer, just guessing from looking at it though
Anonymous
I am sure I still don't understand how pointers actually work
Jeremy
just my guess but when you assign a value to a pointer, are you not giving it an address rather than a value?
Mat
You're doing a pointer sum
Jeremy
I'd have to get a book out to know
Mat
b = variable
*a = pointer
*a -> b
You wrote *a = 5, so
*a = 5 -> ?