Popular repositories Loading
-
call-by-value-1
call-by-value-1 Public#include<stdio.h> #include<conio.h> void swap(int a, int b) { int temp; temp=a; a=b; b=temp; } void main() { int a=5, b=3; swap(a, b); printf("a: %d",a); printf("b: %d",b); }
-
sum-of-two-number
sum-of-two-number Public#include <stdio.h> int main() { int a,b,c; printf("Add two number to do sum\n"); scanf("%d%d",&a,&b); c=a+b; printf("sum of two number is %d",c); }
-
subtraction-of-two-number
subtraction-of-two-number Public#include <stdio.h> int main() { int a,b,c; printf("Add two number to do subtraction\n"); scanf("%d%d",&a,&b); c=a-b; printf("subtraction of two number is %d",c); }
-
Multiplication-of-Two-number
Multiplication-of-Two-number Public#include <stdio.h> int main() { int a,b,c; printf("Add two number to do multiplication\n"); scanf("%d%d",&a,&b); c=a*b; printf("multiplication of two number is %d",c); }
-
-
Git-Github-Tutorial
Git-Github-Tutorial PublicForked from GDSC-UPES/Git-Github-Tutorial
This readme aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below.
If the problem persists, check the GitHub status page or contact support.