Search:

Type: Posts; User: ranadas

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    4,814

    Then why only print 2147483619? it could have...

    Then why only print 2147483619? it could have printed 728 or 753 or 283728983 something like this.. there must be some logic , it is not garbage value
  2. Replies
    9
    Views
    4,814

    Why was it wrong on my part to use "void main"?...

    Why was it wrong on my part to use "void main"? And can you please tell me why the result came out to be 2146483619 , i still don't understand even after reading answers on stack overflow.
  3. Replies
    9
    Views
    4,814

    Can't understand this !!

    #include <stdio.h>

    void main()
    {
    printf("%d",59.00); //prints out 2147483619
    }


    :confused:
    I can't understand the output of this program! Please help!
  4. Please help me in solving this problem using C language!!

    In Chefland, there is a very famous street where N types of street food (numbered 1 through N) are offered. For each valid i, there are Si stores that offer food of thei-th type, the price of one...
  5. Replies
    2
    Views
    3,877

    Thanks Man, you are a life saver!! Kudos man:D

    Thanks Man, you are a life saver!! Kudos man:D
  6. Replies
    2
    Views
    3,877

    Understanding Conversion Specifications!

    What's the use of %h , %u , %i when we can simply use %d for all the purposes.

    For example;



    #include <stdio.h>

    int
    main() {
  7. Replies
    2
    Views
    3,829

    Escape sequences Understanding!

    Alright! we all have heard about escape sequences in C like '\b\,'\a' , etc.

    I have a question regarding it.

    As we all can notice , escape sequences are formed by joining two characters 1.'\' ,...
  8. Replies
    12
    Views
    6,894

    Furthermore are library files automatically...

    Furthermore are library files automatically included or if I specify <stdio.h> then the library file for that particular header file is included?
  9. Replies
    12
    Views
    6,894

    ok so if I delete crt.lib printf() and scanf()...

    ok so if I delete crt.lib printf() and scanf() won't work anymore right?? let's try it
  10. Replies
    12
    Views
    6,894

    Ok So can I make a library file for myself and...

    Ok So can I make a library file for myself and later on use it for m own personal use??

    If possible then how?:eek::confused:
  11. Replies
    12
    Views
    6,894

    Can anyone explain what are libraries in C?

    Here is a screenshot of my Pelles C directory!

    15286

    Here is another screenshot of my Library folder in Pelles C

    15287

    So are they machine code?
  12. Ok Thanks Adrian. I'm a simple young adult 20...

    Ok Thanks Adrian. I'm a simple young adult 20 years old , dropped out of college with a will to learn programming. I earn very less , so all I learn is from you guys , don't have money to buy many...
  13. Replies
    3
    Views
    3,572

    Problem with stdio.h!!

    Whenever I write the the following code in Pelles C it runs fine without including the stdio.h header file!! I donot know why??

    I'm running Pelles C!

    Forgive me for using deprecated Trigraphs...
  14. What is the #pragma startup function as given below?

    15285
  15. Furthermore what is _CRTCHK(printf , 2 , 3) int...

    Furthermore what is _CRTCHK(printf , 2 , 3) int __cdecl fprintf(............etc).. what does it mean?
    Im a beginner , I know C but want help for advanced topics. Please help!
  16. Ok Adrian so which library is it compiled into?...

    Ok Adrian so which library is it compiled into? Further more what are libraries? Are they in machine language? They are not .exe file , so they contain machine code which can't be executed but used...
  17. Replies
    1
    Views
    3,101

    Confusion with pointers!

    for example


    int *p' //means an integer pointer
    int p = 4*8;//means a integer number


    Can you note that I am using the same operator in two completely different scenarios and the operator...
  18. in stdio.h there is no function printf. All I see is this?

    Below is the screenshot of code snippet from stdio.h

    15283

    Below is the attachment of my stdio.h file which is Pelles C file.

    15284

    Please look at it and help me find out where is...
  19. Digraph sequence cannot be included in another token string. Why is that?

    If a digraph sequence occurs inside another token, for example a quoted string, or a character constant, it will not be replaced.

    Link: Digraphs and trigraphs - Wikipedia
  20. That is what is written in the book. There is a...

    That is what is written in the book. There is a post on stack overflow about this. Here

    Can you please explain it. I can't seem to understand the answer to the question in that post. Please :)
  21. Why do we need to specify column size when writing a 2D array In C??

    The following code throws error ! :(



    #include <stdio.h>

    int main(void)
    {
    int array[][]={{1,2,3},{123,244,232}};
    }
  22. Hey GReaper. How long have you been programming?...

    Hey GReaper. How long have you been programming? Because you seem to help people more than anyone else!. I'm Thankful for that . So have you thought anything about creating the next big million...
  23. can some write a program using the below attached image?

    15275

    this is what tutorialspoint.com has in its float.h tutorial.

    can someone implement by writing a program using all these?

    Help me! I have no guidance, I am a sole warrior and a college...
  24. Thanx Man!

    Thanx Man!
  25. Oh so it checks a single character is hexadecimal...

    Oh so it checks a single character is hexadecimal or not , and not whether the passing integer is hexadecimal or not. So for 'E' it shows hexadecimal but what if I pass "FF" as a char string ? In...
Results 1 to 25 of 34
Page 1 of 2 1 2