Search Results

2
votes
7answers
435 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 …
1
vote
4answers
118 views

issue with FILE

I'm getting the folowing error for below code, "1506-221 (S) Initializer must be a valid constant expression" FILE *fp[] = {stdout, dump_f}; is this accep …
5
votes
7answers
603 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
276 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 '- …