How to clear the screen in gcc? [closed] - c

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using code block and gcc for my C as i am a begineer how do i clear the screen the function
clrscr();
is not working

Following should work on most systems:
system("clear");
or
system("tput clear");

Related

How to define the nl_sock in the libnl? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I download libnl3 source code, but did not found out where define the struct nl_sock.Can any one help?
Look in the netlink include files that came with the library. Start in netlink/socket.h, netlink/netlink.h, etc.

How can I make this pop-up window [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to know. How can I make this pop-up window?
http://imageshack.us/photo/my-images/43/wizardpage31zoom84.jpg/
There is a Popup class for that.

OS X - How to read data from S.M.A.R.T.? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to access to information regarding the hard drive - for example the temperature.
How can I do this, preferably in C?

could anyone tell me about reverse linklist with diagram? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Diagram and program code in c is necessary.
http://www.codeproject.com/KB/recipes/ReverseLinkedList.aspx
It's also on Google.

c program for directory monitor [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
i want c program for directory monitor
Use inotify.

Resources