Relative Content

Tag Archive for visual-c++

why is my calculator code telling me that 2/2=2 and 3/3=1.33

#include <iostream> int main() { int x,y,z,w; double a,s,d; x = 0; z = 0; y = 0; d = 0; s = 0; a = 0; std:: cout <<“1 for addition 2 for subtraction 3 for multiplication and 4 for division” << std::endl; std:: cin >>z; if(z==1) { std:: cout <<“enter first number” << […]

Discussions of cheat sheets and checklists for markdown

“Hey folks! I stumbled upon this fantastic discussion on Markdown and its various applications. If you’re looking to streamline your writing process or enhance the formatting of your articles, you’ll find some invaluable insights here. Check it out and level up your Markdown game! https://markdown69.com/

Sends the specified request to the HTTP server and wait for an answer

On most computers, the winAPI ::HttpSendRequest function completes successfully. And I receive a request response from the server.
But on other machines, the ::HttpSendRequest function returns FALSE after some time with error code 12002(ERROR_INTERNET_TIMEOUT)
What could be the reason for this?