BinaryByter
Cum to #ot
I do daily
Shivam
I do daily
That's love
Prometheus
I do daily
That's immoral. Go pray.
Shankar
What's this
Dima
What's this
chat for indians
Shankar
Im in
Dima
now, stop ot’ing
Prometheus
Im in
Sir, they just put us in there because they don't understand our superior skills. They're don't like that we know each and everything.
Mat
#ot
Shankar
So that's why i said I'm in
Prometheus
So that's why i said I'm in
It's an American trick for the phone scam
Shankar
Okok
Shankar
Thanks
Shankar
I don't Khow that
Prometheus
Thanks
Go to camp of last hope
Anonymous
Hi
Prometheus
It's all we have left brother. It's out last hope.
Prometheus
Our*
Anonymous
Hi
Hy
Shankar
Go to camp of last hope
I don't khow where it is
Prometheus
I don't khow where it is
Here you go, sir. https://t.me/joinchat/EXSmZ1ZGlETLYriB2wf7Yw
Prometheus
That group for banned people
It's where we all end up one day.
Shankar
😁😁
Shankar
Anyone watches the walking dead
Shankar
Its good
Mat
Damn
Mat
STOP
Mat
WE HAVE AN OFFTOPIC GROUP. Chat there
Mat
Next ot message will worth a warn
Shivam
So rude >_>
BinaryByter
rule #0 in C++: dont use new
Rev. Astral
Hello
Rev. Astral
I'm looking for someone to check the code I wrote for a *nix terminal text editor using a tutorial. I can't seem to get a function I wrote to color C keywords to work. I've looked over what I wrote, and can't seem to figure it out. I may have a reference missing or something.
Mark
wat
sounds like a snake oil
Rev. Astral
Ahhhhh ok
Mark
rip
Mark
what did you want to send?
Rev. Astral
what did you want to send?
github link to my code
Mark
ask your question
Mark
pm me the link i'll forward it
Mark
github.com/astralentity/kilo
Rev. Astral
I want to have another set of eyes looking thru the syntax highlighting section to see if I'm missing anything
Mark
what's the matter with it?
Mark
i'm on phone i can't analyze it
Mark
or don't wanna... shit task to do on it ;p
Rev. Astral
what's the matter with it?
A loop in a function to color C keywords is not working the way I expected
Anonymous
Ahhhhh ok
Its just for spam prevention, thanks for the corporation!
Rev. Astral
I have the keywords called out in /*** file types ***/
Rev. Astral
klimi
Hi
hi
BinaryByter
have fun doing that
Shivam
Google is your friend
Anonymous
Guess you are at the right place
Anonymous
If you are actually willing to learn
Anonymous
Go through some good book
Anonymous
This
Anonymous
Contradicts
Anonymous
This
Anonymous
XD
Sara
Can anyone help me How can i check every value in the element wether it’s off or ever?
Mihail
Can anyone help me How can i check every value in the element wether it’s off or ever?
The element? I'm not sure I understand exactly what you're trying to achieve
TrUstEd
Am a beginner in C programming .Someone please show me how I can combine this code to avoid too many printf and scanf
TrUstEd
#include <stdio.h> int main() { int x; int y; printf("enter an integer,x"); scanf("%d",&x); printf("enter an integer,y"); scanf("%d",&y); if(x % 2==0) printf("%d is even",x); else printf("%d is odd",x); if(y % 2==0) printf("\n%d is even",y); else printf("\n%d is odd",y); return 0; }
Sara
The element? I'm not sure I understand exactly what you're trying to achieve
Supposed if i have a[2]={1,2} and i wont to check if it’s even and divisible by 5
Sara
This is an example
Mihail
And scanf's
TrUstEd
Mihail
Supposed if i have a[2]={1,2} and i wont to check if it’s even and divisible by 5
Check every element of it? Just use a for loop to go trough it and check each one
Sara
If (a[0]%!==0&&a[0]%5!==0)