Rushi
In next iteration
I_Interface
/report what the fuck
Dima
/ban Prono
Dima
Promo*
Ибраги́м
/ban bye bye
Bulangule
Hi all, is there any link any one can help me telegram link of Software downloads
Dima
No
££*KHB*££
Logic for making heart pattern in c++
Anonymous
Hi guys Can anyone help me out with this task I want to write a program in c++ that uses the output of one program as input to another program.
Anonymous
That is I want two c++ programs to communicate with each other
Anonymous
Does anyone know how to do this?
I_Interface
I_Interface
That is I want two c++ programs to communicate with each other
U need to write a server what will be doing all this (accepting/sending) and client
Anonymous
No I just want to achieve communication between two c++ programs on same computer
Anonymous
Like using the results generated by one program in another program
Anonymous
I_Interface
File handling?
yep just use the same file for 2 programms first writes into the file second reads the file
Anonymous
Hi 💘love
Badugar
Like using the results generated by one program in another program
Pipes, FIFOs, or other ways of IPC may be of interest for you
Anonymous
Anonymous
if 1 computer - why not ?
You will destroy hard disk
Anonymous
mkfifo creates named pipes
It depends on operating system he uses
Anonymous
You will destroy hard disk
And the "connection" can be really slow
Badugar
You will destroy hard disk
How will that destroy his hard disk ? Oo
Anonymous
How will that destroy his hard disk ? Oo
A lot of reads and writings to disk
Anonymous
Everything has limits
Anonymous
And this kind of inter-proccess communication seems bad to me
Anonymous
No I just want to achieve communication between two c++ programs on same computer
https://en.wikipedia.org/wiki/Inter-process_communication
Badugar
If the FIFO is placed on e.g. tmpfs everything will take place in memory.
Anonymous
Anyone give the ans of programming C++ in nptel exam week 2 assignment
Dima
(read the rules)
Ибраги́м
https://theartofmachinery.com/2019/08/12/c_const_isnt_for_performance.html
Anonymous
https://theartofmachinery.com/2019/08/12/c_const_isnt_for_performance.html
I've seen a talk against this statement I send it, when I find it
Ибраги́м
https://github.com/radare/radare2
Anonymous
https://theartofmachinery.com/2019/08/12/c_const_isnt_for_performance.html
https://youtu.be/zBkNBP00wJE?t=1611 Watch this, this link has a timestamp, so you will watch from the moment that disproves this statement
Deepak
How can I perform insert operation in circular linked list
Deepak
in c++
cooper
😐
cooper
i spent like 20 minutes formulating that
cooper
and it had 1 msdn link lol
cooper
If an admin could post it back in, I would appreciate it
Dima
If an admin could post it back in, I would appreciate it
«Hello, everyone. I am using "i686-w64-mingw32-g++ -Wall -masm=intel -mwindows <cpp file>" as a means to compile C++ code on Linux and run it on Windows/through WINE. Using the EXACT code available on https://docs.microsoft.com/en-us/windows/win32/learnwin32/your-first-windows-program , however, does not even compile. It throws an error in linking stating that there is an undefined reference to WinMain. After playing with my code, I noticed that this error goes away when I both remove WINAPI, a macro used by Windows to enforce stdcall, and rename the entry function to just 'main'. However, this leaves me with a number of warnings which seem to reflect the compiler expecting argc, argv, and envp, rather than the normal Windows entry function. And, while they are just warnings and a an exe PE32 for MS Windows is created, doing "wine <output file>" just leaves my terminal hanging, and running it in a Windows 10 Enterprise VM just does nothing. Does anyone with experience in MinGW know why this is the case? How can I reach the desired outcome of the provided code? (Just opening a window)»
cooper
How can I perform insert operation in circular linked list
The method of inserting into a circular linked list is no different really than in other languages. Only difference is just the syntax. In fact, it will be pretty much identical to inserting into a normal linked list, but with an extra variable and check or two
sourav
Any one plz help me to find health care data set of diabetes
sourav
I have my project of diabetes detection using Machine learning anybody plz help to find CSV file of that
sourav
Ok let me check
Francisco
You'd better use Python. With C++ it can be a nightmare
sourav
Yup I m using jupyter nootbook
Alankar
which os you use ?
Anonymous
suppose i created an array in main()
Anonymous
suppose i created an array in main()
1) Place your thoughts in ONE message
Anonymous
2) it is not an array
sourav
Anonymous
int arr[3]; then i pass it in fun(arr)
Dima
using windows in 2019 lol!
Anonymous
void fun(*p){p[0]=3; p[1]=5;}
Anonymous
int arr[3]; then i pass it in fun(arr)
PLEASE WRITE EVERYTHING IN ONE MESSAGE
cooper
lol
Anonymous
PLEASE WRITE EVERYTHING IN ONE MESSAGE
using desktop version when i press enter it sends it
Anonymous
ok
Anonymous
using desktop version when i press enter it sends it
Use ctrl+enter to move to next line
cooper
lol
Anonymous
void fun(*p){p[0]=3; p[1]=5;}
cout<<arr[0]; cout<<arr[1];