-
Notifications
You must be signed in to change notification settings - Fork 62
Issue#37 #85
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
base: master
Are you sure you want to change the base?
Issue#37 #85
Changes from 5 commits
e792e09
7782042
c4800a5
431adac
dca9641
318d05f
ee5e086
5f9e0c0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | ||
| <CodeBlocks_project_file> | ||
| <FileVersion major="1" minor="6" /> | ||
| <Project> | ||
| <Option title="Issue#37" /> | ||
| <Option pch_mode="2" /> | ||
| <Option compiler="gcc" /> | ||
| <Build> | ||
| <Target title="Debug"> | ||
| <Option output="bin/Debug/Issue#37" prefix_auto="1" extension_auto="1" /> | ||
| <Option object_output="obj/Debug/" /> | ||
| <Option type="1" /> | ||
| <Option compiler="gcc" /> | ||
| <Compiler> | ||
| <Add option="-g" /> | ||
| </Compiler> | ||
| </Target> | ||
| <Target title="Release"> | ||
| <Option output="bin/Release/Issue#37" prefix_auto="1" extension_auto="1" /> | ||
| <Option object_output="obj/Release/" /> | ||
| <Option type="1" /> | ||
| <Option compiler="gcc" /> | ||
| <Compiler> | ||
| <Add option="-O2" /> | ||
| </Compiler> | ||
| <Linker> | ||
| <Add option="-s" /> | ||
| </Linker> | ||
| </Target> | ||
| </Build> | ||
| <Compiler> | ||
| <Add option="-Wall" /> | ||
| <Add option="-fexceptions" /> | ||
| </Compiler> | ||
| <Unit filename="main.cpp" /> | ||
| <Extensions> | ||
| <code_completion /> | ||
| <envvars /> | ||
| <debugger /> | ||
| <lib_finder disable_auto="1" /> | ||
| </Extensions> | ||
| </Project> | ||
| </CodeBlocks_project_file> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| #include <iostream> | ||
|
|
||
| using namespace std; | ||
|
|
||
|
||
| int main() | ||
| { | ||
| int num,fact,i; | ||
| fact=1; | ||
| cout<<"Program to calculate factorial of a number"<<endl; | ||
| cout<<"Enter the no"<<endl; | ||
| cin>>num;//statement to get value from user | ||
| for(i=1;i<=num;i++) | ||
| fact=fact*i; | ||
| cout<<"The factorial of number = "<<fact<<endl; | ||
| return 0; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Introduction | ||
|
||
|
|
||
| I am Pavit Kaur | ||
|
|
||
|
|
||
| # Hobbies | ||
| - Programming | ||
| - Writing | ||
| - Watching movies | ||
|
|
||
| ## My favourite smile is :laughing: | ||
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.
What is this file for?
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.
I have deleted the file now