I am using C language. I want to display a table. I know how to display a normal table using
printf
================================
No.| Name | Some Data | Comments
================================
001 xyz 234 abc
002 uvw 5862 abc
003 lmn 8993 abc
004
005
006
007
...
...
================================
Some result analysis goes here:
================================
Are you using a Unix/Linux system? If yes, probably you have ncurses library (man 3). It is a library to manipulate character interface.
You are able to create 'windows' (screen sections) and update only this parts (to remain the header and footer).