Making Mouse Pointers
How to create the mouse pointers in c language. Different shapes can be given to the mouse pointer by changing the values of the cursor variable array.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
How to create the mouse pointers in c language. Different shapes can be given to the mouse pointer by changing the values of the cursor variable array.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This C++ program shows how to use enumerated type . The enum is a compound data type and works in...
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This C code multiplies two 2×2 matrices. It prompts the user to input values for both matrices, displays the input matrices, performs matrix multiplication using nested loops, and then prints the resulting matrix. The code adheres to modern C standards, using printf and scanf for I/O and avoiding outdated functions for better readability and compatibility.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This is a C Program to implement tree data structure. It uses current working directory as the root and traverse all files inside the directory and prints them on the screen. You can use any C/C++ compilers to compile and run this program however, it is tested using Turbo C++ Compiler only.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This C program uses enumerated types to display days of week. The enumerated type is then declared as a different name using typedef keyword i.e. enum days to typedef enum days days. The function prints for each day of the week, today, yesterday, and tomorrow, both as a string and as a number.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This C program demonstrates basic functionalities for handling integer arrays. It allows users to input integers into an array, prints the array, and performs linear searches based on user input until the user enters 0 to terminate.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
Posted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
File input and output operations are essential to many C++ programs, but they can be cumbersome and difficult to manage. Fortunately, C++ provides a powerful mechanism for handling these operations: streams. Streams are a high-level abstraction that simplifies the process of reading and writing to files.
Read More