Search:

Type: Posts; User: shyam168

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    3,602

    Thanks to one and all forn clearing my doubt........

    Thanks to one and all forn clearing my doubt.....

    :) :)
  2. Replies
    9
    Views
    1,925

    Hi fnoyan.. I got ur answer...but one more...

    Hi fnoyan..

    I got ur answer...but one more question is....

    Although I give space/enter key(n times) ...it is waiting for one character...Until i give any character(I mean any letter/number/sp....
  3. Replies
    9
    Views
    1,925

    Sorry Quzah...little confusing....Plz explain me...

    Sorry Quzah...little confusing....Plz explain me in detail...

    Thx inadvance
  4. Replies
    6
    Views
    3,602

    The usage is wrong, incrementing and decrementing...

    The usage is wrong, incrementing and decrementing returns an R value.


    Cud u explain me what is R value?????
  5. Replies
    9
    Views
    1,925

    Added to the above information.... If i remove...

    Added to the above information....

    If i remove the space in scanf statement...the program behaves normally....
  6. Replies
    9
    Views
    1,925

    Strange behavior of Strings

    Hi All,

    The following code line behaves strange...Could anyone of you help in understanding this out....




    char a[10];
    printf("\nEnter a string:");
    scanf("%s ",a);
  7. Replies
    6
    Views
    3,602

    Increment / Decrement Operators - Help

    Hi All,


    I have an small doubt in using Increment / Decrement operators....

    Program is :


    1) #include<stdio.h>
    2) main()
  8. Replies
    4
    Views
    14,502

    Hi I am sorry abt the previous reply.. You...

    Hi
    I am sorry abt the previous reply..

    You mean adding an \n character at the end of printf statement..isn't it????
  9. Replies
    4
    Views
    14,502

    Hi, You mean Printf("xxxxxxxxxxxxxxx \n ")

    Hi,


    You mean Printf("xxxxxxxxxxxxxxx \n ")
  10. Replies
    2
    Views
    4,544

    Hi , You can use a simple for loop in...

    Hi ,

    You can use a simple for loop in which read the value of the each node in to a variable and add the next node value to the earlier read variable and continue upto to node u want to.
    ...
  11. Replies
    11
    Views
    19,805

    Solution : Prime Number

    Hi ,

    Gone thru your code...... A small change is required as follows

    1) Change the following if loop (result = FALSE) part


    if(num % all_div == 0) to

    if(num % div == 0)
Results 1 to 11 of 11