Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for chandini.david

Hey all! Here's my code: mm.cc: [CODE] int compute(int f, int c) { return f + c; } [/CODE] mm.h: [CODE] #ifndef MM_H #define MM_H int compute(int f, int c); #endif [/CODE] main.cc: [CODE] #include <stdio.h> #include "mm.h" int main() { int a; a = compute(10, 4); printf("Output: %d\n", a); …

Member Avatar for chandini.david
0
118
Member Avatar for chandini.david

Helloo! I have a .txt file with around 1000 lines in it - each line just has a number. What I want to do is to copy all 1000 lines and paste it into an excel sheet. So, I went up to the first line, changed to visual mode, and …

Member Avatar for chandini.david
0
619
Member Avatar for chandini.david

Hey!! I'm trying to use the nohup command in background mode (i.e. with the '&' at the end.) When I generally run the program, I use the command: ./xyz "argument 1" arg 2 arg 3 arg 4 > output.txt This works fine. Even when I append nohup to it, i.e. …

0
142
Member Avatar for chandini.david

Hey!! I am trying to make a 2-player game; where one player plays after the next. I have used socket programming in the code; so that, when the client (player 1) clicks on the window, the co-ordinates are sent to the server (player 2) and vice-versa. (For now, both player …

Member Avatar for chandini.david
0
212

The End.