Write a program to find the value of ascci codes
#include<stdio.h>
#include<conio.h>
int main()
{
char ch;
printf("please type a chararcter\n");
ch=getche();
printf("\n the ASCII code for \%c\ is %d",ch,ch);
getch();
}
4/19/2013 06:42:00 pm Unknown 0 Comments
Fundamentals of C Language Tutorial#1
Code Of This Shape . 1***** 12**** 123*** 1234** 12345* 123456
Write a program in c language to compare two strings without strcmp function or any other function
Write a program in C language to add two numbers using pointers
Programe to print the value of EOF
Write a program in c language to reverse a string in reverse order without using strrev function or any other function
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
Write a program to find given given number is armstrong or not?