0
votes
3answers
493 views
Read keyboard characters to determine shortcuts
I'm working on a document application and part of this application I've to add support to read the keyboard pressed events and replace the pre-defined characters set if that keyboard entry is match …
2
votes
7answers
453 views
printing on screen and a text file
I need to dump the certain things into a text file and same has needs to be displayed on screen. (I'm telling about a C program utiltiy)
The menu option looks like following,
1. display …
5
votes
7answers
632 views
How to print out dash or dot using fprintf/printf?
As of now I'm using below line to print with out dot's
fprintf( stdout, "%-40s[%d]", tag, data);
I'm expecting the output would be something like following,
…
0
votes
2answers
289 views
Trimming blank spaces from a char array in C
My char array would be looking something like below,
Org_arr[1first line text------2second line text----3third line-------4--------------------5fith line text------];
where '- …
