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
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~3K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for vincenzorm117

I have been having trouble developing a function that frees all of the memory associated with structs of a linked list. Im not asking for a clear cut answer, just an idea or a function that can aid. F.Y.I. the linked list contains a head struct and a tail struct …

Member Avatar for sorry711
0
242
Member Avatar for vincenzorm117

In the code below I am attempting to establish a method of inputing a year with digits (only digits) into the character array of year. It works, but now if the inputed non-digits are 4 or more (i.e. "abcd") the program runs the printf command more than once. I recommend …

Member Avatar for Narue
0
220
Member Avatar for vincenzorm117

Hey very simple problem. I've been searching the site to see if I did anything wrong and I had to fail because I still get the wrong results (semantic error). Problem #1: Every time I use fopen with the "w" (or write) mode the file with whatever name given is …

Member Avatar for vincenzorm117
0
1K
Member Avatar for syria718

I took your code and tried making you a solution: [CODE]char main() { /*Start of the function main???*/ char choice1; char choices = 'y'; do{ printf("Enter Command (n = no command): "); putchar((choice1=getchar())); //––––––––––––––––––––––––– switch(choice1) { case 'a': case 'A': addContact(); break; case 'f': case 'F': search(contacts); break; case 'v': …

Member Avatar for Narue
0
292
Member Avatar for vincenzorm117

Before you read, I am using Mac's Xcode. In this program I am attempting to print the maximum and minimum values of standard C variables with every variation of modifiers. The unsigned int uses 4 bytes therefore it must have a maximum value of 4294967296 but it only display 2147483647 …

Member Avatar for vincenzorm117
0
633
Member Avatar for vincenzorm117

Okay I've been working with printf for a while on C and I have been trying to use some of the backslash commands such as: \b = backspace \r = moves the cursor to the beginning of the line For some reason they don't seem to work on xCode. 1. …

Member Avatar for nezachem
0
118
Member Avatar for vincenzorm117

In a function I placed the int array: factor[ g + 1] . g being input from the standard input but the program makes the array into this: factor[-1]. By the way I'm using xCode on mac. Why does this happen?

Member Avatar for vincenzorm117
0
121
Member Avatar for COKEDUDE

I understand how you feel right now, so heres my advice. 1. You could Google "stdio.h". This header file handles many of C's input and output functions. 2. You could try Googling anything to do with C programming except not to include the following in your search: "C" or "programming". …

Member Avatar for WaltP
0
126

The End.