Xudoyberdi
https://pastebin.com/yvq553mH I found this on programiz dot com, I didn't understand ptr = #. Anyone can give me a helping hand?
яσнιт
Depends on how you are more comfortable in understanding the fundamentals. If you like to go for books, my favorite is "C in a nutshell" out of all the other. It develops concepts in a better way and is in simple english format but this is solely in my opinion, you can check more if you want on google. If you are looking for youtube course and want to learn for free then "C programming playlist by Neso Academy " is good for an absolute beginner in my opinion. I would recommend to go for this option if you don't want to spend money on books as pirated books imo is not a good option as the degraded quality would let your morale down in the process of learning. Few like to study using documentation, if you fall under that then documentation can be accessed from The official C++, C++ standard, ISO/IEC 14882:2014(E). There is information at ISOCPP how to obtain the document If you are looking for paid bootcamps then any good rating course on any common bootcamp site is fine but check upon the ratings. Knowing and mastering a language is entirely different. As you're a beginner i would suggest you to not confuse between them. COMPLETING A COURSE BOOTCAMP or COMPLETELY READING A BOOK is not mastering but is only developing fundamentals so it doesn't matter from where you start, to master it, there's simply one way, practice. And irrespective of your goal, it's the only wat out. So if you are seriously dedicated and continously practising, very soon we would see you helping beginners here. And it's not a race but a marathon. It doesn't matter how long it takes, if it's good enough to be called as a skill, it will be worth it. And also programming is no hereditary skill, anybody who impersonates an expert is just somebody who practiced more, engaged more into the language and constantly kept learning so anybody can code and be the expert with the will and motivation to do it.
Thanks you for your valuable information 🙏😊
Al
https://pastebin.com/yvq553mH I found this on programiz dot com, I didn't understand ptr = #. Anyone can give me a helping hand?
im quite sure is an error. Never seen that type of code and if you try it dont even copile
Al
plus that istruction doesnt even have ;
Al
i think the right code instead was ptr = &num
Al
oc dont miss ; ad the end
Xudoyberdi
Al
np
Kanni
Get cppbookguide
Anonymous
Get cppbookguide
Use / before the command
Anonymous
/get cppbookguide
Anonymous
Oh thank you
Welcome...
バレンタインがいない柴(食用不可)
Welcome ...
Anonymous
https://pastebin.com/yvq553mH I found this on programiz dot com, I didn't understand ptr = #. Anyone can give me a helping hand?
That should have been: ptr = # In C the pound sign (hash #) does things to the preprocessor. Brendo : less irritated after getting some sleep but still irritated.
Anonymous
guys, i compiled a c source code,and then i run it. but it says: error only position independent executables are supported. how to fix this?
Anonymous
guys, i compiled a c source code,and then i run it. but it says: error only position independent executables are supported. how to fix this?
With GCC or Clang add a -fPIC arg to command line. Android inconvenienced everyone after version 4/5-whatever... Or just get a new coding app.
FBI
Hello guys am new here and a beginner in c++ I hope this group will help me to become a better programmer
Vivek
Need a help for c++ code. Anyone can help?
Igor🇺🇦
Need a help for c++ code. Anyone can help?
No one can with a problem unknown to everyone. Maybe in mind readers group you'll have more luck 😉
Monem
Hey guys, any suggestion regarding this: Int n = rand() % 2; If (n==0) { doSomthing() } doSomething() function will be executed at a probable (random) intervals based on this condition. However, any advice on how to make it more stable? Meaning to have a condition that will execute doSomthing() function exactly 50% or 30% of the whole run time.
HaiNahi
I am making a chess engine anyone join?
klimi
!rules
Pat
Hey guys
Pat
I'm from Cambodia I want to know all of you
Anonymous
Hi everyone 😀
Anonymous
Best C programming book for beginners?
라이트
Hi everyone!
Kobbina
Hello Fam, anyone to show me around wit some beginers projects?
Bojan_Krdemn
Hey guys i need a help with backtracking algorithm design,
Bojan_Krdemn
here i have a function
Bojan_Krdemn
https://pastebin.com/R2XjMnMy
Bojan_Krdemn
but the recursion terminates too early
Bojan_Krdemn
before exploring all paths
Bojan_Krdemn
statement if (findword(args)) returns true to the wrapper function and that's it. i can't figure out what am i missing
Bojan_Krdemn
whoever good in algorithms please dm me
Alessio
Hi everyone, I need help for an exam, someone could help me?
Alessio
Thx
Dima
/warn no
what if wouldn’t ask for a code
Dima
tox
س💕 ⚖️
int main() { int counter; int total,number ; total = 0; counter = 1; //printf(" please enter ten odd numbers to sum \n"); //scanf("%f",&number); //if ( number %3 == 0) while(counter<=2){ printf(" please enter ten odd numbers to sum \n"); scanf(" %d",&number); total = total + number; counter++;} printf ( "the sum is %d \n",total); return 0;}
س💕 ⚖️
Hi guys, I need your help, how to make him accept individual setups only
س💕 ⚖️
In c
س💕 ⚖️
Odd
س💕 ⚖️
Where do I place if (number %3 == 0 )
Pavel
Where do I place if (number %3 == 0 )
%2 == 1 where you want it to be accepted e.g. if (number % 2 == 1) { total = total + number; }
Anonymous
Hi
Anonymous
I want to learn c language
Anonymous
With basics
Anonymous
Any body give notes for c language
Nils
is anyone using C/C++ to detect language?
https://github.com/scivey/langdetectpp use this lib
Anonymous
Ok
Anonymous
Tq
Anonymous
How to get good programmer
Dima
lool
Anonymous
Anonymous
Lol
klimi
nooo
Dima
lmao
Dima
HAHAHAHAHAH
Anonymous
Ok
klimi
lmao
Sorry
Anonymous
Sorry
Pavel
Is there any difference in storage of a function-local const int or same function-local static const int (assuming the first one is not optimized away)?
Pavel
What is function-local?
void func() { const int someVar = 20; ... }
Pavel
vs the same but static
Anonymous
Is there any difference in storage of a function-local const int or same function-local static const int (assuming the first one is not optimized away)?
Definitely 1. Static one have static storage duration 2. Static one will be initialized with a mutex lock
Anonymous