What is the output of the following program?main(){char ch[] = " sookshmas beyond knowing";int l = strlen(ch);cout << l << endl;}
What will be the output of the following program?
#include <stdio.h>void m(int k){printf("hi");}void m(double k){printf("hello");}void main(){m(3);}