-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Swap_value_in_c++.cpp #23
base: main
Are you sure you want to change the base?
Conversation
@09Raushan09 please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good here on paper
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good here on paper
What's the purpose of this pull request? Is there some value this is providing to the example of how C++ can work in a Dev Container and/or Codespace? |
This is learning C++ in a dev container for ML training purposes. |
I suspect then that this PR was meant to target https://github.com/09Raushan09/vscode-remote-try-cpp/tree/main instead of the upstream repository. I don't see there being a real chance that this PR will be accepted into the upstream. @09Raushan09 - Good luck with your journey learning C++! |
I recommend closing this PR as the downstream work isn't intended for feature development and shouldn't make its way upstream to this repo. |
Sorry didn't realize what branch it was to merge with problems solved |
#include
using namespace std;
int main()
{
int i,j ,temp;
// Enter First value
cout<<"Enter the value of i : ";
cin>> i ;
cout<<"Enter the value of j : ";
cin>> j ;
}