Home | Computer Science
23.Write a programme using >= 

#include <stdio.h>

main()
{
int a,b;
a=90;
b=90;
if (a>=b)
{
printf("%d",a);
}
else 
{
printf("%d",b);
}
getch();
}

OUTPUT

24.Write a programme using float 

#include<stdio.h>
 main() {
  float myFloatNum = 5.99;  // Floating point number
  
  printf("%f", myFloatNum);
  return 0;
}

OUTPUT