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);}
#include stdio.h> #include<math.h>What is the output of the programint main (){int a=1, b=2, c=1; c+=(-c)?a:b;printf("the output is C=°d",c);}