Search:

Type: Posts; User: Yoges

Search: Search took 0.00 seconds.

  1. Thread: Need Help.

    by Yoges
    Replies
    2
    Views
    1,338

    Need Help.

    I wrote the following Program.



    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    #include<dos.h>
  2. Replies
    2
    Views
    1,568

    Is something wrong with this program?

    #include<stdio.h>#include<conio.h>
    #include<stdlib.h>
    #include<dos.h>
    int getkey();
    void main()
    {
    long normaldays,firstday,totaldays;
    int leapdays,year,month,sum=0,col,row,i,ch,d;
    ...
  3. Replies
    4
    Views
    4,327

    How to get scan code of ESC key?

    i wrote the following code :


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


    int a[][4] = {15,9,10,25,6,2,4,7,32,19,42,8,21,17,18,0};
    void boxes();
    void display();
  4. Output is not formatted accordingly.

    #include <stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    main()
    {
    int n=0,i,n1;
    char ch;
    FILE *fptr,*fptr_e,*fptr_o;
    clrscr();
    fptr=fopen("C:\\all_num.txt","w");
  5. Is the below C program is correctly written program to display list all header files?

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


    int main()
    {
    int done;
    struct ffblk a;
    clrscr();
  6. I wrote the following C program.

    #include <stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    main()
    {
    int n=0,i,n1;
    char ch;
    FILE *fptr,*fptr_e,*fptr_o;
    clrscr();
    fptr=fopen("C:/TCWIN45/BIN/all_num.txt","w");
  7. i don't have any code.i just want a c program and...

    i don't have any code.i just want a c program and i want a c source code for Borland c++.Please tell me a program.
  8. Write a C program to write even and odd integers into different files.

    Create three files namely all_numbers, odd_number and even_number.
    Get the number of records and the numbers to store from the user.
    Save all the numbers in “all_numbers” file. Read each number and...
Results 1 to 8 of 8