What will be the output of the program?#include int main() { const char *s = ''; char str[] = 'Hello'; s = str; while(*s) printf('%c', *s ); return 0; } - Study24x7
Social learning Network
study24x7

Default error msg

Login

New to Study24x7 ? Join Now
Already have an account? Login
06 Mar 2023 03:03 PM study24x7 study24x7

What will be the output of the program?

#include<stdio.h> int main() { const char *s = ""; char str[] = "Hello"; s = str; while(*s) printf("%c", *s++); return 0; }

A

Error

B

H

C

Hello

D

Hel

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles