TRICKY PROGRAM Archive

Take input and Print message in C using tilde ^ | in C Program and get output|
November 25, 2020
No Comments
Print message in C using tilde In most case, you will see scanf() work with %s, But here we are using ^(Tilde) Operator Insted of %s.The tilde operator in C for Print message in C using tilde. Tilde in C Program #include <stdio.h> int main(void) { char *s; printf(“Enter some text\n”); scanf(“%[^\n]”, s);

Advance C program for printing Message
November 24, 2020
No Comments
Advance C program for printing Message Hello Dear in this program you learn, how to set character limitation in the C program using the Char function throughthe Advance C program for printing Message. Set Printing Character Limit in C #include <stdio.h> int main() { char ara[5] = “HeyMan“; printf(“%s”, ara); return 0; }