/* Beginning 2.0 */
#include<stdio.h>
main()
{
printf(" %d signifies the %c of %f",9,'rise',17.0);
return 0;
}
Hello people
When I compile this, the compiler giving the following warning:
warning: multi-character character constant [-Wmultichar]|
And the output only prints e
instead of rise
.
Are multiple characters not allowed in C?
How can I print the whole word (rise
)?
Please help me out.