Monday, January 25, 2021

 #include <stdio.h>

int main()

{

    float a,b;

 printf("enter a and b");

   scanf("%3f %2f" , &a , &b );

    printf("%3f %2f",a,b);

    return 0;

}

No comments:

Software scope

 In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...

Popular Posts