How is "fprintf()" used in C++?
| Type | Description |
| c | Character |
| d or i | Signed decimal integer |
| e | Scientific notation using e character |
| E | Scientific notation using E character |
| f | Decimal floating point |
| g | Use the shorter of %e or %f |
| G | Use the shorter of %E or %f |
| o | Signed octal |
| s | String of characters |
| u | Unsigned decimal integer |
| x | Unsigned hexadecimal integer |
| X | Unsigned hexadecimal integer(capital) |
| p | Pointer address |
| % | A % followed by another % character will write % to the stream. |
| #include <stdio.h> int main() { char a[] = "India"; FILE *str = fopen( "fprintfeg.txt", "w" ); fprintf( str, "Hiox %s\n", a ); } |