Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
2
0 Endorsements
Ranked #44.2K
Ranked #4K
~9K People Reached
Favorite Forums
Favorite Tags
Member Avatar for andy8521

Hi I am starting to learn Java. I am new to Java. Which book do you think is the best book to learn Java for Beginners?

Member Avatar for Krokcy
0
266
Member Avatar for ttrrp

Hello everyone, i am facing a problem with turbo c, when i complie and run the program, the screen just shows a blank black sreen, nothing is executed. you press any button on keyborad, the screen returns back to the editor mode. No program is getting executed, Found no errors …

Member Avatar for ttrrp
0
224
Member Avatar for hwoarang69

I am trying to compute 2x-x+4x, so the answer should be 5x. but i am not sure how to get started. The "x"'s are messing me up. I am thinking of using for loop and replace x with '\0'. and than add or sub starting from left to right. but …

Member Avatar for TrustyTony
0
105
Member Avatar for varunme

How can we convert a string to int without a standard lib the string termination can be '/r'

Member Avatar for Fiverivers
0
230
Member Avatar for n.cramp

Hi all, Having a little trouble with assigning values to an array within a C struct. Unfortunately i cannot assign a size to the array as i am reading values to an array to be stored, and the size is relative to the other values in the struct passed to …

Member Avatar for n.cramp
0
3K
Member Avatar for hwoarang69

how do you insert in linked list. this is that i have. struct node { int data; struct node *next; }; struct node *head; void insert(struct node*, char*, int); int main() { int data; struct node *List_A = NULL; insert(&List_A, %data); return 0; } void insert(struct List_A, int data) { …

Member Avatar for hwoarang69
0
92
Member Avatar for idiotguy

Hi friends! I'm new to libcurl programming in C. I cant find any libcurl tutorial on the web.Also i tried [the official one](http://curl.haxx.se/libcurl/c/) but i cant understand it because its not elaborate. So please help me with the tutorials/resources on libcurl programming in C. Thank you.

Member Avatar for Ancient Dragon
0
151
Member Avatar for kase20

hi guys!! The purpose of the program I am trying to do is to have an input number of 6 digits typed in and this should then be printed as an hour minute second format. for example 123456 would be 12:34:56 This is what I have but it isn't working …

Member Avatar for Ancient Dragon
0
106
Member Avatar for luislupe

The problem I have and can't understand is that I receive a segfault when trying to close the second file (fclose(ofp)). Input file is a xml file that will generate food for output file. At present time, input file is being read for parsing but no output for outfile is …

Member Avatar for Ancient Dragon
0
2K
Member Avatar for marComm

Hello, I am building a website using a standard form and perl script that we commonly use, but this one has a special request and I don't know how to handle it because I have very little knowledge of Perl, other than what is in the standard script I have …

Member Avatar for marComm
0
565
Member Avatar for hwoarang69

char *ar[5]; //Array of pointers let say char * ar[5] contain: ar[0] = "cat"; ar[1] = "desk"; ar[2] = "desk" ar[3] = "zoo"; ar[4] = "cat"; how i want to get of any same strings. so in end ar should have the value "cat","desk","zoo". this is what i have so …

Member Avatar for hwoarang69
0
114
Member Avatar for dilse4sk

hi every one. I need some ideas for the calculation. I have a form where admin can add the product. field names are Product_id,Name,Description,Quantity,Unit_price now i have an other form which is used for buying products. What i want to do is when customer chooses the product, as soon as …

Member Avatar for P.manidas
0
940
Member Avatar for agieli

hi guys! i'm trying to build a wireless sensor network which should be able to detect and track bluetooth devices inside a room,thus it should have an interface(map layout) showing the tracking!!this will involve the use of triangulation methods in finding the target location. i would just like to ask …

Member Avatar for Fiverivers
0
127
Member Avatar for minghags

hello, i wanna ask if somebody can help me with this problem. First code: #include <stdio.h> #include <stdlib.h> int main(int argc, char* argv[]){ if(argc>1) { int i=1, zmnozek=1; zmnozek=atoi(argv[1]); for(i=1; i<argc; i++) { zmnozek*=atoi(argv[i]); }; printf("Rezultat: %d\n",zmnozek); }else { printf("Nepravilen vnos!\n"); }; return 0; } And there is the problem: …

Member Avatar for minghags
0
119
Member Avatar for Bowsan22

So ive been trying to get an average of this array needed, and I seem to be having trouble with it. So far, my current code just adds the numbers up, but doesnt really average them out at all: [CODE]import java.util.Scanner; import java.util.Arrays; public class Grades { public static void …

Member Avatar for Xinen
0
325
Member Avatar for jumbowat

Hi, I want to know what is meant by a code footprint. I tried googling but all of them have explanations that I was really not able to understand. Can anyone please tell me what is means? How is it important and how can it be used(if at all it …

Member Avatar for BobS0327
0
1K