TipsMake
Newest

Tags : int

How to Create an Alert in C
Programming C 05 March 2020

How to Create an Alert in C

sometimes, when writing a program, you need to create a way to get the attention of the user to bring their focus back to the program. alerts are a very useful way to do that. if

Read More
How to Create Pointers in C
Programming C 05 March 2020

How to Create Pointers in C

pointers are the nightmare of every new c programmer. however, they are also the feature that made c the widespread, powerful programming language it is until today. like many

Read More
How to Make a GUI Grid in Java
JavaScript 05 March 2020

How to Make a GUI Grid in Java

the grid does nothing special at this stage, but with a little bit of research, you can add action listeners and a bit of logic to make a simple 2d game like tic-tac-toe, or more

Read More
Function raise () in C
Programming C 25 May 2019

Function raise () in C

function int raise (int sig) in library c creates sig signal. the sig parameter is compatible with the sig macro.

Read More