I want to store punjabi language character in char data type, how can I do it?
#include <stdio.h>
int main() {
// Write C code here
char ch = 'ਜ';
printf("%c", ch);
return 0;
}
the above line prints wrong value after warning: multi-character character constant [-Wmultichar]
, how can I fix this?
New contributor
Jasleen Kaur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.