Dima
Anonymous
Hello
Anonymous
Hiii
Ilya
this is reformatter
Im afraid this format string scanf("%f,%f,%79[^\n}]" ,&latitude, &longitude , info) == 3 ){ Is incorrect
Spirit
C*
Anonymous
Thank you.
Anonymous
Thik h bhai
Anonymous
Aapki marzi
Anonymous
Thik h bhai
/warn English only
Jesvi
Hello , I have a question How do I create a folder in the project directory, like if I open the project (main.exe) in downloads folder, the program should create a folder there ... similarly if I move the project (main.exe) to another folder and execute it there then it should also create a folder in that directory
Jesvi
Help plz , I'm learning
Artöm
C++
std::filesystem
Artöm
current_path and create_directory
Jesvi
Thanks for the tip everyone
Soklin
Thanks so much!!! I'm happy to join in this group!!!
Dima
YK Y
You're very welcome!
are you in python group too?
nitesh jainy
Anyone can guide me related to Tcs digital (internal) test for tcs employee?
🥂ɱɾ.ɱ🥂
Excuse friend's programming language C ++ someone explain to me a little bit?
Anonymous
C is the mother of all languagez
Anonymous
C++ is advanced child of C
Anonymous
what's the question?
Explain her about friends c++ a little bit?
Ilya
Explain her about friends c++ a little bit?
C++ has many friends all around the world! Many people use C and C++ for creating new software
Dima
Sidhhartha roy
Hi can anyone share wipro materials for nlth preparation for free
Sidhhartha roy
My exam is on 18 of next month
Sidhhartha roy
Ntlh
Sidhhartha roy
National hunt exam
Anonymous
National hunt exam
Amcat automata questions for coding
Anonymous
Otherwise just prepare apti usually, ... It's not difficult question
Sidhhartha roy
Ok Thanks
Anonymous
Ok Thanks
http://geekplacement.com/amcat/automata-questions-answers.html remember the questions from here
chris
I want study materials for infosys and cognizanf
chris
Cognizant
Anonymous
National hunt exam
Hunting in programming chat? Really?
Anonymous
Good for you, so what?
U give him 😂
Anonymous
I want study materials for infosys and cognizanf
https://placementpapers.net/INFOSYS_Placement_Paper_Material_TIPS
Anonymous
Hunting in programming chat? Really?
It's not hunting of animal... About programming
chris
Good for you, so what?
So provide me nthing else😂
Anonymous
Anonymous
Anonymous
What is hunting in programming?
Hunting of programmer
Sidhhartha roy
YK Y
void recurse() { static int i = 4; if (--i) { recurse(); printf("%d", i); } }
ShonaBunny
Can anyone say me TCS nqt phase2 interview questions asked for ECE stream plz
Anonymous
Anonymous
Is it TCS day or something?
Sidhhartha roy
Sidhhartha roy
void recurse() { static int i = 4; if (--i) { recurse(); printf("%d", i); } }
After i becomes zero itcomes out of if loop since it is a static variable it will not be created and initialized so
YK Y
0 0 0 is the o/p
Sidhhartha roy
How will it go to print statement where they are calling the function before that
Anonymous
YK Y
Right
how it will come that's what i'm asking?
Anonymous
Answer would be 000
Anonymous
how it will come that's what i'm asking?
It gets called 3 times till it becomes --4,--3,--2,--1=0
Sidhhartha roy
Anonymous
So for each of the functions it will retain it's value
Anonymous
And return 0, after print
Anonymous
Get it?