I am trying to practice more problems on hackerrank the problem is i am facing a no response of stdout error more frequently. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am trying to practice more problems on hackerrank the problem is i am facing a no response of stdout error more frequently.

Can someone give me a good advice on how to avoid it?

13th Jul 2019, 11:02 AM
viki
viki - avatar
12 Answers
+ 1
you sent me pastebin code with no output to file look to my code at line 56 fout<<ways; // this line must be added
15th Jul 2019, 6:30 AM
zemiak
+ 1
Tq buddy it's working fine now zemiak
15th Jul 2019, 6:36 AM
viki
viki - avatar
0
show code (but I don't solve c++ now)
13th Jul 2019, 1:57 PM
zemiak
0
https://code.sololearn.com/cyTR5xaHqjCs/?ref=app I had done this code this had produced correct output for coin change problem in sololearn and in my eclipse but when pasting this code in hackerrank ide it produces no response of stdout.I had even tried with other programs but it produces the same no response of stdout error.I am attaching the problem link below https://www.hackerrank.com/challenges/coin-change/problem
13th Jul 2019, 2:18 PM
viki
viki - avatar
0
Had even tried with other codes in leaderboard but it produces the same no response on stdout error
13th Jul 2019, 2:20 PM
viki
viki - avatar
0
I am trying to avoid this error but I am not finding the cause
13th Jul 2019, 2:21 PM
viki
viki - avatar
0
The challenge was from dynamic programming and not from c++ cateogory of c++
14th Jul 2019, 2:57 PM
viki
viki - avatar
0
you must write an answer to the fout file instead of cout study the original default code (you can reset the solution if you have a copy of your solution somewhere), there's a fout line. I was success with it. ofstream fout(getenv("OUTPUT_PATH")); ... long ways = getWays(n, c); fout<<ways; ...
15th Jul 2019, 3:12 AM
zemiak
0
Ya I had changed my code to that format also and tried to get output in many types of codes in leaderboard but still that error persisted.Will send the code in that format
15th Jul 2019, 3:17 AM
viki
viki - avatar
0
this is my complete code with your solution, what is your, what is different ? https://pastebin.com/enZy2PwV I try run only, not submit, (c++ / c++14) but I get this: "Congratulations! You have passed the sample test cases. Click the submit button to run your code against all the test cases."
15th Jul 2019, 3:33 AM
zemiak
0
zemiak my program looks similar and it looks like this https://pastebin.com/jx3453bs
15th Jul 2019, 6:00 AM
viki
viki - avatar
0
zemiak and I tried it with other programs but it produces the similar output of "no response on stdout".I still can't be able to find the cause of this error
15th Jul 2019, 6:04 AM
viki
viki - avatar