Skip to content
View Bhavin3981's full-sized avatar

Block or report Bhavin3981

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories Loading

  1. 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); }

  2. 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); }

  3. 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); }

  4. 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); }

  5. gym-web-project gym-web-project Public

  6. Git-Github-Tutorial Git-Github-Tutorial Public

    Forked 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.