Ariana
In school
Ariana
you know how some teachers are like woi pay attention
Ariana
So its hard to use com
Ariana
So i write code on a IpHoNe
Dima
So its hard to use com
^ this, wanted to tell but meh
Dima
I tried to code on a tablet long a go in a school
Ariana
my typing speed OH on phone is like reaching 50 wpm cus of lessons mdr
Anonymous
You're welcome
Mihail
I can do like 42wpm at most
Ariana
practice by texting while looking somewhere else/crossing roads/etc mdr
ONCE
just follow these projects, your are good to go: https://github.com/rby90/Project-Based-Tutorials-in-C
S.
And you'll reach 100+ wpm when lying in a hospital
creater
Can anyone send complete notes of c and c++ Please
Dima
send bobs & nootes
itsmanjeet
Any body here used to linux framebuffer api in c
itsmanjeet
I have done a minimal
itsmanjeet
How can we hide message from console
Ariana
Oh yes
Ariana
Tho i have a keyboard for brainfuck alr XD will be relaly nice to hav one
Anonymous
👍rose
Anonymous
What's the pinned message?
Dima
Click the message near to navigation bar
Dima
This
Dima
Rokas Urbelis: ## Welcome We're very glad to welcome you to join the International C/C++ Group. You can invite others by https://t.me/programminginc ## Rules * You are not entitled to an answer, getting angry about not answered questions will get you warned. * Not checking your problem in google (or any other search engine) first will get you a warn. * Asking for something that is in the pinned message right after joining WILL GET YOU BANNED. * C/C++ discussion preffered (assembly also allowed), asking about other languages right after joining will get you BANNED. * Reverse enginnering, hacking (not facebook, instagram, etc.) also if you ask "how to become a hacker" and obviously have zero knowledge on anything related to that you may get warned or banned. * Legitimate requests for help on code and programming questions are ok (no homework requests, or "pls write entire program for me" requests). * Asking for book recommendations is ok, but "pls give pdf book" is not allowed, find books by yourself. Posting illegally copied books (or links to those books) is also not allowed. * Only English language is allowed, if you speak shitty English or don't understand anything in English YOU WILL BE BANNED. * A little bit of programming related memes, jokes, shitposting are allowed. * NSFW content (porn, nudity, etc.) is not allowed. * Spamming will grant you a warning or an immediate ban if you spam right after joining. * Religion, politics and ideological topics are forbidden. * Long code snippets must be posted via a snippet website(links below), posting pictures of code and posting long snippets in the group is not allowed. * If you encounter a problem, while using turbo C++, you will not be helped, use another more modern IDE. ## Resources About asking good questions: * [English](http://www.catb.org/esr/faqs/smart-questions.html) * [Translations](http://www.catb.org/esr/faqs/smart-questions.html#translations) For posting long code snippets: * [GitHub Gist](https://gist.github.com) * [Ubuntu Paste](https://paste.ubuntu.com/) * [Pastebin](https://pastebin.com) ## Reports If you notice any forbidden content, please use the /report command while responding to the offending post to report it to the admins.
Anonymous
Do you have some tutorials for beginners?
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
We can answer questions
Anonymous
Anonymous
hi
Anonymous
I just did it! and Thank you
Anonymous
Welcome :)
Anonymous
I am new programmer, I'm in college right now
Anonymous
Anonymous
im taking C and C++ classes
Anonymous
Cool :)
BinaryByter
c doesnt have classes
Anonymous
oof
Anonymous
im taking COP2220
Anonymous
yeah it wasnt C class at all, it was like an introduction to C++ programming
BinaryByter
toldya, @shelly
Anonymous
toldya, @shelly
yep, you're right
Anonymous
BinaryByter
xD
Anonymous
hahaha
Anonymous
guys I know I am new in the group, but im also new as a programmer and i want to learn and become a good programmer
Anonymous
Then code and contribute to projects :)
of course!!! that is what i really want
Anonymous
I dont know if you can help me.. :( im stuck in a homework, my professor wants to create a loop BUT it cant be a for loop, do..while and while. omg I dont know any other way!!!
Anonymous
You are not permitted to use the following commands: while do while for goto (by the way, you are NEVER ALLOWED TO USE goto) There is another way to do a loop in C, Java, C++ and other programs
Mat
There isn't afaik🤔
Anonymous
im gonna show you
Anonymous
Program Specifications: Write a C program that does not use a do while, while or for loop. The program will enter any number between 2 and INT_MAX from the user. The program will output if the number entered was PRIME or NOT PRIME. Example Run Please enter a number between 2 and 2147483647: 2 The number 2 is a prime number. Please enter a number between 2 and 2147483647: 77 The number 77 is NOT a prime number.
Anonymous
and this is what i have
Anonymous
You don't have any books for c++
Anonymous
#include <stdio.h> #include <stdlib.h> int main() { int i; puts("Please enter a number between 2 and 2147483647:"); scanf("%d", &i); if (i == 1) { printf("1 is neither a prime nor a composite number.\n\n", i); } else { if (i % 2 != 0 && i % 3 != 0 && i % 5 != 0 && i % 7 != 0 || i == 2 || i == 3 || i == 5 || i == 7) { printf("The number %d is prime\n\n", i); } else { printf("The number %d is NOT prime\n\n", i); } } system("pause"); return 0; }
Anonymous
no, he says that everything is in internet, but i cant find anything
Anonymous
There is simply no loop here
exactly!! and I need a loop
Anonymous
but it cant be for, do while, while and goto
Mihail
exactly!! and I need a loop
He probably wants you to do it recursively
Anonymous
There is no other loop type. But you can cheat and use recursion
Anonymous
how's that?
Mat
That's totally different
Mihail
That's not a loop
I haven't said it is
Mat
Explain that as loop it's stupid
Mihail
I said what his professor probably wants them to use
Anonymous
well I have a friend she JUST told me she is going to use that
Mihail
Well that's basically a function that ends up calling itself
Mihail
Of course you also have to add an ending condition
Mihail
Not sure of exactly a good way to describe it
Anonymous
I have to create the program in fucntions, so, I have to modify it
Anonymous
can you help me? is the first time I hear about that