Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
39% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
3
2 Commented Posts
~3K People Reached
Favorite Tags

17 Posted Topics

Member Avatar for umesh314

Hi I started reading IPC mechanism in Linux. I know that there is no synchronizaion technique needed for pipes, but when it comes to named pipes where unrelated process can communicate with each other. Question. Does any schronization technique is needed in FIFO/named pipe or it works the same way …

Member Avatar for rubberman
0
97
Member Avatar for umesh314

I am not able to see the desired output. Please let me know where I am missing a point. #include<stdio.h> struct node{ int data; struct node *next; }; void push_node(struct node *node, int data){ struct node *new_node = (struct node *)malloc(sizeof(struct node)); if(node!=NULL){ new_node->data = data; new_node->next = node; node …

Member Avatar for umesh314
0
110
Member Avatar for danibecse

Hi Please check out this link. http://www.learncpp.com/cpp-tutorial/812-static-member-functions/

Member Avatar for NathanOliver
0
219
Member Avatar for umesh314

Hi, I am trying to write a code in which i want to read the command line arguement ( which i can get by using $(0,1,...) ) and want to give the arguement to some filename. Eg. ./myprogram filename.cpp I want to remove ".cpp" from the filename and want to …

Member Avatar for Watael
0
203
Member Avatar for umesh314

Hi I am trying to run the post fix and pre fix operation in C++. The code which I tried is given below. #include <iostream> using namespace std; int main() { int a =0; cout << ++a + ++a + ++a << endl; // 7 a =0; cout << ++a …

Member Avatar for Lucaci Andrew
0
251
Member Avatar for np complete
Member Avatar for Brian_L
Member Avatar for JasonHippy
0
150
Member Avatar for albert.antwi.90
Member Avatar for Ubunterooster

Modify line 81. printResult (nos, subTtl, costToShip, completeCost); //Function6

Member Avatar for Ubunterooster
0
315
Member Avatar for Vish0203

#include <iostream> #include <cstdlib> #include <iomanip> using namespace std; template <class T> class stack { T data; stack<T> *top; stack<T> *next; public: stack() { top = NULL; next = NULL; } void push(); void pop(); void display(); }; template <class T> void stack<T> :: push() { T elepu; stack<T> *temp …

Member Avatar for umesh314
0
145
Member Avatar for umesh314

Hi all, I want to automate the work of uploading excel datas to databases using PHP. I am familiar with working on csv files and databases. But I want the XLS file which i am uploading , to be converted to CSV file using PHP before the process begins. PLEASE …

Member Avatar for chrishea
0
186
Member Avatar for umesh314

Hi all , i have a string var containing info like this. [B]STRING[/B] = "Are you posting in the most appropriate place [B][COLOR="Red"]PKG0620_REL_23_Nov_2010[/COLOR][/B] to receive relevant replies" So, my program will ask only "PKG0620" info to be given by the user which i am storing in SEARCH var. SEARCH = …

Member Avatar for umesh314
0
127
Member Avatar for umesh314

I would like to know the working of this code in brief.. any help will be appreciated... function getCookie(c_name) { if (document.cookie.length>0) { c_start=document.cookie.indexOf(c_name + "="); if (c_start!=-1) { c_start=c_start + c_name.length+1; c_end=document.cookie.indexOf(";",c_start); if (c_end==-1) c_end=document.cookie.length; return unescape(document.cookie.substring(c_start,c_end)); } } return ""; }

Member Avatar for Airshow
0
138
Member Avatar for umesh314

I have installed fedora 13 in separate disk partition( Not inside window 7 )...so now i want to remove it and want to install ubuntu studio 10.04... As I am new to this Linux Environment I need ur help to step forward Please Help

Member Avatar for umesh314
0
168
Member Avatar for umesh314

// program implement the working of files simple stock // management #include <iostream.h> #include <fstream.h> #include <iomanip.h> #include <stdlib.h> #include <stdio.h> class stock{ int code; char name[30]; float cost; char flag; public: void getStock(); void putStock(); char getFlag(); void putFlag(char); int getCode(); }; int stock :: getCode(){ return code; } …

Member Avatar for Ancient Dragon
0
133
Member Avatar for umesh314

Please help me....... I want to buy a book for C++... i want your suggestion for this..... i am confused... HELP.....

Member Avatar for umesh314
0
157
Member Avatar for umesh314

#include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> #include<graphics.h> int citem=0,ctemp=0; int count; void menu(); struct item{ int icode; char iname[30]; int quantity; float price; }; void modify(); struct item i; void additem(); void display(struct item ); void delete_item(); void main() { char ch,another; int num; FILE *fp,*ft; int code; long int recsize; fp= …

Member Avatar for java_programmer
-2
149

The End.