Search:

Type: Posts; User: cprogramnoob

Search: Search took 0.01 seconds.

  1. NEVERMIND I was harassed.

    NEVERMIND I was harassed.
  2. Read from left to right? Where can i get a list of words in a dictionary?

    I searched the web for a simple list of dictionary words in English.
    All I got was bologna and redirection. I even ran into a FEW FAKE dictionaries. Who the f*** makes a fake dictionary? The...
  3. That UNIX platform is not what I am looking for....

    That UNIX platform is not what I am looking for. I found some code from Microsoft.
    I posted a calendar code set for other C coders.

    Microsoft wrote something about NETW.

    Complete Winsock...
  4. // simp_calendar.cpp : Defines the entry point...

    // simp_calendar.cpp : Defines the entry point for the console application.
    // Written Visual Studio 2005 C.
    // Starting days are ONE day later from the previous year unless a leap year then they...
  5. Windows network programming from a console program

    I am looking for the simplest code that does a client and server side socket connection in visual studio with c that does NOT use the windows.h call.

    I am trying to write something in console and...
  6. Thank you for helping be careful of the gibberish...

    Thank you for helping be careful of the gibberish against me out there. When I say FAIL it failed for me. Your success was not mine.
  7. methods

    COMMANDS TO EMPTY A STRING


    memset(message_cache1,0,sizeof(message_cache1)); --> SUCCESSS

    strcpy(message_cache1, ""); --> FAIL (LEFT gibberish hidden)
  8. I charge for looking at your answer. ;-)

    I charge for looking at your answer. ;-)
  9. My code is buffering my output. I don't find this funny.

    #define _CRT_SECURE_NO_WARNINGS
    //#include <stdlib.h> // used by atoi and malloc
    #include <stdio.h> ...
  10. thoughts on breaking the prime factors for this?

    RSA-260 =...
  11. Replies
    6
    Views
    3,502

    The staple of every language is.......

    (1197) Pinterest
  12. Replies
    6
    Views
    3,502

    Computers not talking to each other on standardization?!?!?!?!?!! Programming humans?

    That is a fantasy.
  13. Replies
    6
    Views
    3,502

    Official C99 standards I believe.

    With your permission.

    Easier to read as a standard please.

    I can't read C++ to well as a reference.

    Maybe....
    Ratified.....and list the standard.
    Unratified.....lost standard / replaced...
  14. Replies
    6
    Views
    3,502

    TINY C not only supports ANSI C, but also most of...

    TINY C not only supports ANSI C, but also most of the new ISO C99 standard and many GNUC extensions including inline assembly.
  15. Replies
    6
    Views
    3,502

    ANSI C Standards

    The first standard for C was published by ANSI. Although this document was subsequently adopted by International Organization for Standardization (ISO) and subsequent revisions published by ISO have...
  16. This is a draft of a word program...like a text adventure...written in c.

    /*
    this program structure is for a simple text based adventure written in c
    it was written on Dev C 511 in the C programming language on windows 10
    Watch your back carefully sentient...
  17. I wrote that code sometime in space it is not...

    I wrote that code sometime in space it is not exemplary. Here is the manual for TinyC.

    Tiny C Compiler Reference Documentation (bellard.org)
  18. This codes written with TinyC multiplies strings. Still has some comment lines.

    It is operational but should be edited for use.


    /*
    This code is designed to multiply two numbers as *strings* not integers.
    The largest unsigned long long int is supposedly...
  19. The entire point of adding strings is to be able...

    The entire point of adding strings is to be able to multiply large numbers.
    This method has multiple flaws because it integrates using integers at the wrong places.

    I would recommend not using...
  20. Why does this string multiplier code crash after about 200 characters?

    effective on small numbers.



    #include<stdio.h>
    //#include<math.h>
    #include<stdlib.h>
    #include<string.h>
  21. This C code finds primes.....compiled TinyC

    /*
    This program is used to find prime numbers greater than 5.
    */
    #include <stdio.h>


    int main()
    {
    /* largest unsigned long...
Results 1 to 21 of 24