program:
#include<stdio.h>
int main()
{
int i,j;
for(i=0;i<5;i++){
for(j=0;j<=i ;i++)
printf("*");
}
printf("n");
output:
*
**
***
****
*****
Write a program to swap two variable without use third variable.
Write a program to Print ASCII value of any character in C language.
Write a program to show the char by using the ASCII value.
Write a program to find the factorial of the number.
Factorial by the recursion in C language ?
Write a program to check number is prime or not
Write a program to check given char is alphabet or not.
Write a program to check alphabet is in lower case or not?
Write a program to check alphabet is in UPPER case or not
Write a program to print "HelLo world" without using the semicolon.
Write a program to change the upper case letter to lower case letter
Write a program to convert the lower case alphabet to upper case alphabet
Write a program to find the maximum of two number without using the if statement
Check maximum between two number using loop.
Check palindrome string in C language
Check calindrome string in C language
What is the explanation for modular programming?
Generate random number in between 0 to 10 in C langauge
Write a program to print the following : 1 12 123 1234 12345
Write a program to display the Fibonacci series
Write a program to find the LCM of the two number
Write a program to find the HCF of two number
Write a program to make the pascal triangle
Write a program to print the star triangle
Write a program to convert the decimal number to its binary equivalent
Write a program to convert the decimal number to its octal equivalent
Write a program to titled the given string
print first 10 prime number
Write a program to count the sexy prime in between the two number range.
Interview Question C language Set1
Interview Question C language Set 2