Skip to content
View ATUL9021's full-sized avatar

Block or report ATUL9021

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. OIBSIP OIBSIP Public

    Java 1

  2. if-the-marks-obtained-by-a-student-in-five-different-subjects-are-input-through-keyboard-write-a-pr if-the-marks-obtained-by-a-student-in-five-different-subjects-are-input-through-keyboard-write-a-pr Public

    #include<stdio.h> int main(){ float math,phy,chem,os,java; printf("Enter maths marks\n"); scanf("%f",&math); printf("Enter physics marks\n"); scanf("%f",&phy); printf("Enter chemistry marks\n"); sc…

  3. Temperature-of-a-city-in-Fahrenheit-degreees-is-input-through-the-keyboard.Write-a-program-to-conver Temperature-of-a-city-in-Fahrenheit-degreees-is-input-through-the-keyboard.Write-a-program-to-conver Public

    #include<stdio.h> int main(){ float fah,centigrade; printf("Enter temperature of Nagpur city in Fahrenheit\n"); scanf("%f",&fah); centigrade=( fah- 32) *5/9; printf("After converting fahrenheit int…

  4. IF-a-five-digit-number-is-input-through-the-keyboard-write-a-c-porgram-to-calculate-the-sum-of-its-d IF-a-five-digit-number-is-input-through-the-keyboard-write-a-c-porgram-to-calculate-the-sum-of-its-d Public

    #include<stdio.h> int main(){ int digit; printf("Enter a number whose sum you want\n"); scanf("%d",&digit); int mod=0,div; div=digit; while(div!=0){ mod=div%10+mod; div=div/10; } printf("Sum of dig…

  5. if-a-4-digit-number-is-input-through-the-keyboard-write-a-program-to-reverse-the-number if-a-4-digit-number-is-input-through-the-keyboard-write-a-program-to-reverse-the-number Public

    #include <stdio.h> int main() { int digit; printf("Enter a number\n"); scanf("%d", &digit); int mod = 0, div; div = digit; printf("Reversed number is "); while (div != 0) { mod = div % 10; div = di…

  6. website website Public

    HTML