What will be the output of the following program?
#include <stdio.h >
   void m(int a)
   {
       printf("sookshmas ");
  }
       void m( double a )
   { 
      printf(" beyond knowledge ");
   }
       void main()
   {
      m(4)
  }


Posted on by