Write a program to read data from a file.
#include <stdio.h>
#include <conio.h>
int main()
{
FILE *fp;
char a;
fp=fopen("file_name.txt", "r");
while(a!=EOF)
{
a=fgetc(fp);
printf("%c", a);
}
getch();
}
4/20/2013 01:26:00 am Unknown 0 Comments
Fundamentals of C Language Tutorial#1
Programe to print the value of EOF
Code Of This Shape . 1***** 12**** 123*** 1234** 12345* 123456
Write a program in c language to reverse a string using recursion.
Create a class of student, get student name and age and print on screen using setter and getter function.
Write a program that will determine the prime factors of a specified factorial
Print Counting From 1 to 100 without Loop
Write a program print squire pyramid using for loop.
Write a program to find given given number is armstrong or not?
Write a program to check given number is prime or not using recursion