Search:

Type: Posts; User: sangken

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds; generated 47 minute(s) ago.

  1. Replies
    3
    Views
    974

    A Simple C Program!!!

    #include <stdio.h>

    int main(void) {
    puts("Merry Christmas Everyone!!!");
    puts("May we all remember the true meaning of the season.");
    }
  2. Replies
    15
    Views
    4,196

    maybe he wuz just exaggerating? :D

    maybe he wuz just exaggerating? :D
  3. Replies
    18
    Views
    50,368

    ok. i think i got the general idea. now how does...

    ok. i think i got the general idea. now how does this endian thingy work? i mean, wuts the difference between using big and lil endian byte orders?
  4. Replies
    18
    Views
    50,368

    hmmm, what is an Endian? i thought he meant...

    hmmm, what is an Endian? i thought he meant indian or sumthin lol!
    can anybody give me a brief description of what an endian is? thanks!
  5. Thread: Small Help!

    by sangken
    Replies
    7
    Views
    2,116

    arrow keys have ascii equivalents. try...

    arrow keys have ascii equivalents. try experimenting using getch() :D
  6. will printf("£%.2f is equal to %.2f...

    will


    printf("£%.2f is equal to %.2f euros.", input, output);

    work??
  7. Replies
    6
    Views
    1,206

    Master Dave_Sinkula is the resident sscanf()...

    Master Dave_Sinkula is the resident sscanf() legend here.. be sure to ask him for help... :D
  8. Replies
    9
    Views
    1,997

    correct me if im wrong but i think the number 1...

    correct me if im wrong but i think the number 1 indicates that there were "1" successful conversions and successful "storing" of that converted value into the variable exp.

    that purpose of that...
  9. Replies
    9
    Views
    1,997

    if you want to test if a double value was...

    if you want to test if a double value was successfully stored into x and an int value was stored into exp, then your thinking is correct. or so i think so... try experimenting so that u'll know for...
  10. Replies
    8
    Views
    3,530

    jeeze... i wish C were like java, where there are...

    jeeze... i wish C were like java, where there are hardly any standard or portability issues becoz of the JVM... hehehe! peace to all java-haters here
  11. Replies
    8
    Views
    3,530

    okies... my teacher once used flushall() to clear...

    okies... my teacher once used flushall() to clear all streams... is this non-portable or non-standard too???
  12. Replies
    8
    Views
    3,530

    if it's not defined, why does it seem to work?...

    if it's not defined, why does it seem to work? just curious
  13. Replies
    28
    Views
    27,621

    wow! is C really that powerful?? i kinda thought...

    wow! is C really that powerful?? i kinda thought that C was only famous coz linux was written on it. hmmm... now i know there are lotsa other reasons too!
  14. Replies
    9
    Views
    1,997

    scanf returns an integer, either the number of...

    scanf returns an integer, either the number of values read in, or EOF if an end of file is reached. EOF is a special termination character, specified in stdio.h, which designates the end of a file....
  15. Replies
    16
    Views
    3,978

    hey, i know this is a noob question but, what the...

    hey, i know this is a noob question but, what the difference between 32-bit compilers and 64-bit ones? please explain in an untechnical manner if you can please. :D
  16. isnt a loop necessary to traverse the list till...

    isnt a loop necessary to traverse the list till you find where you want to insert?
  17. Replies
    11
    Views
    4,785

    hey, im no expert here. but i think you can make...

    hey, im no expert here. but i think you can make almost any type of program in c. almost because c isnt a "modern age" language. you cant make 3d graphic games with c, with surround sound and etc......
  18. Replies
    10
    Views
    23,880

    ok SKeane, what is your idea of a good...

    ok SKeane, what is your idea of a good assignment? well, not for experts, but for those still learning the language. can you give examples on: (not the overly complicated ones)

    1.) loops and...
  19. Replies
    16
    Views
    3,978

    256 nested loops? wow! thats a whopping O(256)...

    256 nested loops? wow! thats a whopping O(256) running time.. :(
  20. Replies
    44
    Views
    7,525

    instead of worrying bout size of the code, is it...

    instead of worrying bout size of the code, is it not better to worry about it's space and time complexity even more? :D
  21. hmm, i've got a suggestion too: 1.) declare...

    hmm, i've got a suggestion too:

    1.) declare four pointers to node, i.e. head, tail, p1, p2 and let them all point to the front of your linked list. if the list is NULL or empty, then do sumthin...
  22. Replies
    11
    Views
    4,785

    does it take in multiple operands and operators...

    does it take in multiple operands and operators at all at the same time? and use parentheses? well then, an RPN (using stack ADT) calculator is the best solution to you problem. where to find it, try...
  23. ahhh.. jeeze.. didnt know that.. last time i...

    ahhh.. jeeze.. didnt know that.. last time i heard (from my instructor), int can only hold those aforementioned values. my my, how ancient am i.
  24. ahh so in modern compilers, int isnt 4bytes big...

    ahh so in modern compilers, int isnt 4bytes big anymore? ok
  25. Replies
    24
    Views
    3,154

    @quzah... They ARE watching... really familiar.....

    @quzah... They ARE watching... really familiar.. from which movie did you take that one may i ask?
Results 1 to 25 of 117
Page 1 of 5 1 2 3 4