Creating Bootable Media (USB) for fedora 25To create a Fedora Linux Live bootable USB key you will need Fedora Linux ISO image and some sort of USB key with disk size higher than the actual ISO image…
Develop a Project for supermarket billing system
This
mini project should be developed in C++ where you find mainly two
classes one class item another class amount and class amount is
inherita…
@page { margin: 0.79in }
p { margin-bottom: 0.1in; line-height: 120% }
BASIC IDEA: In this game we have created 2 dimensional array .In which we have to
place TRAPS on vario…
Develop a Snake and Ladder Game Projects
Description:
This
C++ program on SNAKE AND LADDER GAME is a simple text base game. We
have used procedure oriented method to design this game.
This prog…
Develop a Banking System Projects
Description:
This
C++ programs on BANKING SYSTEM has account class with data members like
account number, name, deposit, withdraw amount and type of account.
…
This should be a simple console application without graphics.
This should be a fee structure program It can be used for following ways:-
We can view the fee slip of a student of a class
We can also…
Requires:
variables, data types, and numerical operatorsbasic input/outputlogic (if statements, switch statements)Cola Machine
Design a class that presents the user w/ a choice of your 5 favorite bev…
Write the code for the constructor(s) for the class, and for getters-setters for all the variables.
Create a subclass house of building. house has three more variables: string name, int bedrooms, int…
Storage class :- In addition to datatypes variable has one or more attribute and that is class.It is of 4 types.
Automatic - When a variable declared inside a function block then by default it is as…
Datatypes - It is use to define type of data. A variable can only be used in program if it is not declared with a datatype.
Datatypes are helpful in determining how much space will it take in memory.…
ACPI ERROR - NAME space look up failure
ata3: COMRESET failed (error = 32)
60.628828 ata3: reset failed giving up
62.628895 ata3: sError: { DevExch }
the system started in 30 minutes after conti…
Orphan Process
===============
If in a process, the parent process is terminated before the child process, the child process become orphan
- It takes the lowest possible process as its parent
- And…
Mostly we use printf statements in c and cout in c++ to debug to program , to check at which line error is coming.This is basically a time consuming method, good for codes of short length but when co…
Share the work done or any useful info u come across while learning..it may include info/tips/tricks..DO NOT POST QUERIES..For queries use the query forum..
I installed fedora 20 on my hp laptop .One problem i face after installation .Brightness keys not working..pls any one knows hw to fix this problem pls help m
whenever I run small number of clients let say 100 to 150
kill signal from the server is working fine
(here kill signal is send by the server to the client through the pid of the client process(at …
Question:- Explain difference between IPC Answer: Ipc mechanisms are mianly 5 types1.pipes: it is related data only send from one pipe output is giving to another pipe input to share resourse pipe ar…
Solving assignments is our primary task but due to hectic schedule we are not able to discuss it, so the objective of this form is to post doubts, best possible solutions and discussions on assignmen…
When ever we are running two process together using fork() in our main program , and if parent process finishes before child process , Parent process is terminated by shell and Child is adopted by IN…
Due to the use of scanf():
Not able to access the zeroth(0th) element of the integer array??????????????
Code:
#include
int main()
{
unsigned int m[] = { 0x01, 0x02, 0x04, 0x08, 0x1…
For one member
#include"header.h"
#define MYFILE1 "./myfile1"
#define MYFILE2 "./myfile2"
int main()
{
printf("\n %s : bigen",__FILE__);
struct pollfd mypo…
i m opening and creating a file using c program , at the time of open i m giving the permission to the file write for all user (user,group,other) but its not working ,
even cmd [chmod +w MYFILE ] is&…
char * m_array(int fd)
.
.
return arr;
while recieving char* arr in another func it displays warning below.
char *ptr;
ptr=m_array(fd);
warning: assignment makes pointer from integer without a cast
…
pipe is buffer ,have own size of 64k. pipe have two file discriptor. fd[0] for read and fd[1] for write operation. if we try to fd[1] for read and fd[0] for write then it print a garbage value.In pip…
===================================================
This is the code
===================================================
#include
#include
#include
struct bs
{
…
hey friends ,, i have a problem in my laptop (dell 3568 i3 6th generation).
i installed debian 8.6, in which i am facing problem,,,, whenever i shutdown this or down the lid, then it is neither get s…
Formula for Interpolation Search is => mid = l + ((h - l) / (arr[h] - arr[l])) * (key - arr[l]);
code is =>
#include
#include
#include
#define max 10
int main()
{
int arr[max],i,l,…
we all know about functions and pointers very well. but what is function pointer ?
function pointer is pointer who points to a function.
why we use function pointers?
well we use function pointers t…
The fundamental difference between 32 and 64 bit systems is the size of
memory addresses. In theory, a 32 bit system can not work with more than
4 GB of RAM (232 bytes). In practice, it is possib…