Skip to content
  • Home
  • News
  • Sample Code
  • How To
  • Tutorial
  • Assignment Help!

Student Assignment Help

Assignment Solution @ Assignment Help on Fiverr.com

  • Home
  • News
  • Sample Code
    • C/C++ Sample Code
      • C in Linux
        • Linux Kernel Module
      • C in Windows
    • Java Sample Code
    • Python Sample Code
    • New Jersey Standard ML (SML/NJ)
    • Oracle Sample Code
    • Database Analysis and Design Sample
  • How To
    • HTML-XML-CSS
    • Java
    • MySQL
    • Oracle
    • Linux RedHat
  • Tutorial
    • System Analysis and Design
    • Data Flow Diagram DFD
    • Database Analysis and Design
    • C/C++ Language
    • WordPress
      • WordPress Basic
      • WordPress Security
  • Assignment Help!

Category: Sample Code

Sample Java Code to Match IPv4 Addresses

Posted on 2018-10-132018-10-17 By Presto Bear No Comments on Sample Java Code to Match IPv4 Addresses

Download Solution: Click to Download Solution Solution File Name: SrcCode2CC.rar Unzip Password: prestobear.com A. Match IPv4 Addresses (50 points total) Work on the following tasks in the order they are given. The order is designed to help you incrementally build up a complete regex. 1. For this part you will complete the IPV4_ADDRESS_REGEX static variable…

Read More “Sample Java Code to Match IPv4 Addresses” »

Java Sample Code

HW 6: IPC Socket Talk

Posted on 2018-05-142018-12-03 By Presto Bear No Comments on HW 6: IPC Socket Talk

Download Solution: Click to Download Solution Solution File Name: CSampleClientServerChatProgram.docx Unzip Password: prestobear.com Problem: This is the C sample program for client and server chatting Design and implement TALK Server and Client applications, as described in this Problem Statement. Overview: Your application will consist of two separate programs, SERVER.exe and CLIENT.exe. Both programs will use…

Read More “HW 6: IPC Socket Talk” »

C in Windows

Lab 5 – Source-Filter-Sink: Concurrent Processes

Posted on 2018-05-142018-12-03 By Presto Bear No Comments on Lab 5 – Source-Filter-Sink: Concurrent Processes

Download Solution: Click to Download Solution Solution File Name: CSampleSourceFilterSinkProgram.docx Unzip Password: prestobear.com Problem: The program will include: • The Source program obtains a source text-file filename from its commandline, opens the file, and reads and copies the file contents one character at a time directly to standard output (stdout). When the source file has…

Read More “Lab 5 – Source-Filter-Sink: Concurrent Processes” »

C in Windows

C Sample SMake to simulate as C make Program

Posted on 2018-05-142018-12-03 By Presto Bear No Comments on C Sample SMake to simulate as C make Program

Download Solution: Click to Download Solution Solution File Name: CSampleSMakesimulateCmakeProgram.docx Unzip Password: prestobear.com Problem: Write a C Console application S_MAKE that implements a MAKE-like utility (similar to the old-style Microsoft MAKE utility). S_MAKE is invoked by specifying a Script filename on the command line: S_MAKE project-script-filename If no script filename is given, default to a…

Read More “C Sample SMake to simulate as C make Program” »

C in Windows

C Sample Program to Paging

Posted on 2018-05-142018-11-16 By Presto Bear No Comments on C Sample Program to Paging

Download Solution: Click to Download Solution Solution File Name: CSampleProgramPaging.docx Unzip Password: prestobear.com Problem: This is the C in Window program to simulate as a paging program 1.mypaging.c #include < stdio.h > #include < stdlib.h > int n; int nFrame; int in[100]; int p[50]; int hit=0; int i; int j; int k; int pgfault=0; void…

Read More “C Sample Program to Paging” »

C in Windows

C Sample to List Directory Program

Posted on 2018-05-142018-11-16 By Presto Bear No Comments on C Sample to List Directory Program

Download Solution: Click to Download Solution Solution File Name: CSampleListDirectoryProgram.docx Unzip Password: prestobear.com Problem: This is the C in Window program to simulate as the dir command of the MS DOS to list all the directories and files in a location 1.mydir.c #include < stdio.h > #include < windows.h > #include < time.h > int…

Read More “C Sample to List Directory Program” »

C in Windows

C Sample Backup a File Program

Posted on 2018-05-142018-11-18 By Presto Bear No Comments on C Sample Backup a File Program

Download Solution: Click to Download Solution Solution File Name: CSampleBackupFileProgram.docx Unzip Password: prestobear.com Problem: In this application, we will write a C program to backup for a file. For example: c:\>backup.exe para1 para2 -para1 is the source file that need to be backuped -para2 is the destination file that hold the backup of the source…

Read More “C Sample Backup a File Program” »

C in Windows

C Linux Kernel Iterate Birthday Struct

Posted on 2018-04-132018-11-08 By Presto Bear No Comments on C Linux Kernel Iterate Birthday Struct

Download Solution: Click to Download Solution Solution File Name: CLinuxKernelIterateBirthdayStruct.docx Unzip Password: prestobear.com 1.assignment.c #include < linux/init.h > #include < linux/module.h > #include < linux/kernel.h > #include < linux/list.h > #include < linux/slab.h > struct birthday { int day; int month; int year; struct list_head list; }; struct list_head birthday_list; struct birthday *createBirthday(int day, int…

Read More “C Linux Kernel Iterate Birthday Struct” »

Linux Kernel Module

C in Linux Kernel Code for Deep First Search (DFS)

Posted on 2018-04-092018-10-26 By Presto Bear No Comments on C in Linux Kernel Code for Deep First Search (DFS)

Download Solution: Click to Download Solution Solution File Name: CinLinuxKernelCodeforDeepFirstSearch.docx Unzip Password: prestobear.com Problem: In this sample, we will write a code for Deep First Search (DFS). 1.parttwolist.c #include < linux/init.h > #include < linux/kernel.h > #include < linux/module.h > #include < linux/sched.h > void dfs(struct task_struct *task) { } int parttwo_list_dfs_init(void) { } void…

Read More “C in Linux Kernel Code for Deep First Search (DFS)” »

Linux Kernel Module

C in Linux Kernel Code to List PID, Name, and Status

Posted on 2018-04-062018-10-26 By Presto Bear No Comments on C in Linux Kernel Code to List PID, Name, and Status

Download Solution: Click to Download Solution Solution File Name: CLinuxKernelCodeListPIDNameStatus.docx Unzip Password: prestobear.com Problem: This is C in Linux Kernel Code to list out the PID, name, and state of current processes 1.partonelist.c #include < linux/init.h > #include < linux/kernel.h > #include < linux/module.h > #include < linux/sched.h > int partone_linear_list_init(void) { } void partone_linear_list_exit(void)…

Read More “C in Linux Kernel Code to List PID, Name, and Status” »

Linux Kernel Module

Posts navigation

Previous 1 2 3 … 14 Next
Assignment Help!!!

Key Posts

  • Chapter 5 – Crow’s Foot Notation
  • [SOLVED] Could not find this item. This is no longer located
  • Linux command to get Tomcat PID
  • Case Study: Entity Relationship Diagram (ERD) for Student Registration System
  • Sample Java Program for Triangle
Assignment Help!!!

Recent Posts

  • Windows 10: How to start Command Prompt as Admin and Terminate a process
  • Java How to Trust all Email Server
  • [Solved]: Windows 10 100% Disk Usage
  • Weddings, Parties, Everything Catering Services System
  • CSC/CPE 3350 Lab 4 Part 1 – Recursive File Search
  • Zayed University
  • Kitchen Gadgets
  • Food Ordering System
  • Investment bank XYZ Ltd
  • CSC/CPE 3350 Lab 3 – The Falcon Shell
  • CSC/CPE 3350 Lab 2
  • Analyzing Cost and Benefit: Campus Bikes
  • Emirates Top Auto Parts
  • Sports News
  • Workington Council
Assignment Help!!!

Copyright © 2022 Student Assignment Help.