The output of the code will be :-#include iostreamusing namespace std;int main() {int n;n =67;(n % 2 == 0) ? cout n " is even." : cout n " is odd.";return 0;}
#include stdio.hint _a_1234(int n){return n++;}int main(){int n = _a_1234(6);printf("%d",--n);return 0;}
What will be the output of this code#include stdio.h#includestring.hvoid solve() {char s[] = "sookshamas";printf("%s ", s);char t[40];strcpy(t, s);printf("%s", t);}int main() {solve();return 0;}