DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Software Ylug 110th kpatch code reading

Kpatch is a tiny live-patching tool/function for linux kernel which is under development. This explains how the kpatch kernel module works in Japanese.

Documents C Programming

C Programming :: Declarations and Initializations 1. Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ? A.rem = 3.14 % 2.1;…

Documents C & Unix Commands

Contents       Contents The Common Desktop Environment o The front panel o The file manager o The application manager o The session manager o Other CDE…

Documents RPC

RPC: Remote Procedure Call petición respuesta El Llamado de procedimientos remotos Principios teóricos y programación en Unix Dr. Roberto Gómez C. Diapo. No. 1 RPC: Remote…

Documents C51 Primer

C51 Primer An Introduction To The Use Of The Keil C51 Compiler On The 8051 Family Edition 3.6 05 October 2003 by Mike Beach Editor for Edition 3.6 Chris Hills Chris Hills…

Education C –FAQ:

1. C –FAQ:Q: How should I decide which integer type to use?A:If you might need large values (above 32,767 or below -32,767), uselong. Otherwise, if space is very important…

Documents EL2010 11 Linking

EL2010 – Organisasi dan Arsitektur Komputer sumber: Greg Kesden, CMU 15-213, 2012 Linking Achmad Imam Kistijantoro Santika Wachjudin Dicky Prima Satya Today   Linking…

Documents Audit.pdf

Front cover Accounting and Auditing on AIX X 5L A comprehensive guide to setting up accounting and auditing on AIX 5L Advanced Accounting and Workload Manager integration…

Documents C_C++

1. What is the output of the program given below #include main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); } 2. What is the output of the following program…

Documents C Questions

Placement Cell C Questions Predict the output or error(s) for the following: 1. { void main() int const * p=5; printf("%d",++(*p)); } 2. { char s[ ]="man";…