Skip to content

Commit d48b4ec

Browse files
author
Pc
committed
intro added
1 parent d4246cb commit d48b4ec

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- [Introduction on How to Use GitHub Repository](https://github.com/itzpc/Introduction-To-Python-Programming/blob/master/README.md#introduction-on-how-to-use-github-repository)
1212
- Introduction to Python Programming
1313
- [C Program output](intro/cprog.c)
14-
- [Python Program output](intro/Pyprog.c)
14+
- [Python Program output](intro/Pyprog.py)
1515
2. Data Types
1616
3. Iterative Statements
1717
4. Functions
@@ -23,16 +23,16 @@
2323
#### Introduction on How to Use GitHub Repository
2424

2525
1. Log on to your [GitHub](https://github.com/login) Account.
26-
2. Go to [this](https://github.com/itzpc/Introduction-To-Python-Programming) Repository
26+
2. Go to [this](https://github.com/itzpc/Introduction-To-Python-Programming) Repository
2727
3. Click on Fork or edit icon . This will create a copy of this repository in our GitHub account.
28-
4. Go To your Repository . Select **Introduction-To-Python-Programming**
29-
5. Select the File you want to work on
28+
4. Go To your Repository . Select **Introduction-To-Python-Programming**
29+
5. Select the File you want to work on
3030
6. Edit File
3131
7. Make some changes in the File . And Click on Propose Changes .
3232

3333
![Alt text](images/Make%20Some%20Changes.png?raw=true "Title")
3434

35-
8. Create a Pull Request
35+
8. Create a Pull Request
3636

3737
![Alt text](images/Create%20A%20Pull%20Request.png?raw=true "Title")
3838

@@ -46,6 +46,3 @@
4646
***
4747

4848
You are welcome to contribute to [this](https://github.com/itzpc/Introduction-To-Python-Programming/issues) repository.
49-
50-
51-

intro/Pyprog.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
x = 8
2+
y=x
3+
x=100
4+
print("Y = ",y)

intro/cprog.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#include <stdio.h>
2+
3+
int main()
4+
{
5+
int x,*y;
6+
x=8;
7+
y=&x;
8+
x=100;
9+
printf("Y=%d",*y);
10+
return 0;
11+
}

0 commit comments

Comments
 (0)