Search:

Type: Posts; User: shyam.sunder91

Search: Search took 0.01 seconds.

  1. Thanks Very Much

    i belong to research i not much aware of this concepts of gcc and linux pretty new envi.

    do u have any idea,any envi variable is present to store the default path of libraries how to view that...
  2. Problem with Multiple File Compilation Error:

    dont concern the concept but problem is with c programming

    Actually i am working on a simulation which mimics the subjective analysis of MOS(Mean Opinion Score) Evaluation

    My job is to compare...
  3. Replies
    5
    Views
    1,100

    problem solved replaced condition of for loop ...

    problem solved replaced condition of for loop

    *porg+i with *(porg+i)..........damn pointers :)
  4. Replies
    5
    Views
    1,100

    may b that was not the real problem i hav changed it but no use

    doubt not resolved...by this solution
  5. Replies
    5
    Views
    1,100

    Problem with String Comparison

    problem is why my code takes a large time to give output....


    //this program is supposed to check the user password
    //the approach used is take password form console in to array and
    //compare...
  6. Replies
    7
    Views
    1,583

    The Results were some what weird

    #include<stdio.h>
    main()
    {

    int i;

    static char array[500],c;

    for(i=0;(c=getchar())!=EOF;i++)
    {
  7. Replies
    7
    Views
    1,583

    i wil go with this idea

    laser light your idea was good looking to code it soon il post that
  8. Replies
    7
    Views
    1,583

    i did not gent you

    my question is
    we have successfully removed the comments but the characters remain in their places the spaces are not removed how to remove spaces and make the program spaces free output
  9. Replies
    7
    Views
    1,583

    preprocessor program

    //a program which works as a preprocess removes comments in a given program

    #include<stdio.h>
    main()
    {
    int i,start,end;
    char array[500],c;
    for(i=0;(c=getchar())!=EOF;i++)
    ...
  10. Replies
    3
    Views
    1,094

    very thanks that was my fault used ctrl+Enter...

    very thanks that was my fault used ctrl+Enter instead ctrl+d very sorry im a beginner execuse me admin
  11. Replies
    3
    Views
    1,094

    whats wrong with my code

    after i execute the code by ./code
    >i have entered a pragraph
    >i have pressed Ctrl+Enter to denote EOF
    >then a nothing happened i m supposed to see the results. the console keep on...
  12. any tough c programming puzzles online ......

    provide your valuable links which would be useful for my campus placement preperation
  13. guys thank u very much.im just beginner....these...

    guys thank u very much.im just beginner....these may seem silly to u . :)
  14. problem with character counting program

    //counting no:characters
    #include <stdio.h>
    main()
    {
    int c;
    for(c=0;getchar()!=EOF;c++)
    ;
    printf("%d",c);
    }
Results 1 to 14 of 14