Recent content by Yamna

  1. Y

    Why Is My Turbo C Graphics Window Not Displaying Correctly?

    yes its working properly i am using windows xp.but does that matter?:confused:
  2. Y

    Why Is My Turbo C Graphics Window Not Displaying Correctly?

    this is my program but this is not working well.according to me a window should be created and some text will be written there.but the window is not working please can anyone tell me why?and how can i eject this error. mind that compiler is running the program correctly.. C Syntax (Toggle...
  3. Y

    How to Count Characters and Words in a File Using C?

    i have made a program with this algorithm but its not working properly my code is given below can you help me to remove the errors #include<stdio.h> #include<conio.h> void main() { FILE *f; char ch; int nalpha=0,nword=0,nno=0,nsc=0; f=fopen("abc.txt","r"); if(f!='NULL') {...
  4. Y

    How to Count Characters and Words in a File Using C?

    hi. please can anyone help me in making a program that opens a file and tell the no. of character and no. of words in the file. i can write a program to open a file but how can we count characters and words of any file..:confused:
Back
Top