Write a program to print star triangle form.
#include<stdio.h>
#include<conio.h>
int main()
{
int a,b;
for(a=7;a>=0;a--)
{
printf("\n");
for(b=0;b<=a;b++)
{
printf("*");
}
}
getch();
}
4/19/2013 06:38:00 pm 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
Write a program print squire pyramid using for loop.
Write a program to check given number is prime or not using recursion
Run the "Hello, World" program on your system. Experiment with leaving out parts of the program, to see what errer messages you get
Write a program in assembly language to get ASCII and convert it into Character.