Search:

Type: Posts; User: kumar14878

Search: Search took 0.00 seconds.

  1. Replies
    22
    Views
    2,875

    You can do this by creating three functino like ...

    You can do this by creating three functino like
    input /* having input information
    menu items
    /* Addition, Multiply, Divide, Subtract and so on.
    and the last one is
    switchcases
    /* having...
  2. Replies
    4
    Views
    7,373

    To create a rectangle in C

    Hi
    I am using Turbo C. I am making a programme for GK, but i need some rectangle to present the questions, answers and options respectively.

    please help to complete the task.

    Thanx
  3. Replies
    8
    Views
    9,885

    small cash register

    Hi daisy_polly,
    Your most welcome.
    To display all the enteries entered by you, you need to store all the records in a seperate data file, for that u need to use file stream and then you can only...
  4. Replies
    4
    Views
    7,373

    How to make a Rectangle

    Hi I just want to make a Rectangle in C using graphics instead of doing like this:


    void box_ma()
    {
    int c=60,r=1;
    gotoxy(60,1);
    printf("%c",218); // ASCII Code of ("Ú") is 218
    ...
  5. Replies
    8
    Views
    9,885

    You can handle these type of problems with switch...

    You can handle these type of problems with switch and case commands, it is always easy to handle the optional programmes using switch and case statements.


    switch(input)
    {
    case <option>:...
  6. Replies
    11
    Views
    2,580

    You can this programme as under: #include...

    You can this programme as under:



    #include <stdio.h>
    #include <conio.h>

    void main()
    {
    char name[10];
  7. Replies
    2
    Views
    1,634

    thousand seperator

    Is it possible to put thousand seperators for numebrs like:
    1,00,000.00
    I am declaring array as under


    float stage_a[]={1000,2000,3000,5000,10000,
    20000,40000,80000,160000,320000,...
  8. Thanx all I have got ur points and implemented ur...

    Thanx all I have got ur points and implemented ur techniques. Now I have got the appropriate answer too.
    Thanx again to all.
  9. Count the number of vowels, consonants, digits etc.

    Hi! All
    Here I am trying to write a programme, which will accept a line of text and count the vowels, consonants, digits, whitespaces & others like (.,;,).
    The code i am using is :

    ...
  10. Replies
    3
    Views
    1,191

    Repeat condition problem

    Hi All!
    I am getting a problem in using scanf for yes/no condition


    #include <stdio.h>
    #include <conio.h>
    #include <ctype.h>
    long fibonacci(int count);
    void main()
    {
  11. Replies
    4
    Views
    2,648

    for loop proble

    I think there is nothing wrong with for loop. You should use define after header files. There are error in if condition.
    Instead of using

    if(h <= D2 && > D3)
    use

    if(h <= D2 && h> D3)
    ...
  12. Thread: Linked List

    by kumar14878
    Replies
    2
    Views
    1,048

    Linked List

    Hi!
    I am trying to create a Linked List and inserting some numbers and displaying those numbers through display function.
    But I am not able to get the appropriate result.
    Hope someone will help....
  13. Replies
    1
    Views
    1,253

    time converting

    Hi! I am learning programming in C and I am trying to make a programme to convert the seconds in days, hours, minutes, and remaing seconds.
    I have been discussed this problem earlier and got good...
  14. Replies
    2
    Views
    1,305

    Time Calculating

    Hi! I am a bigner and learning the C programming I am having a problem in Converting the Seconds (Input by User) into Days, Hours, Minuts & Seconds.
    Can anyone help me. I am using the codes like...
Results 1 to 14 of 15