19) Sample C Program to print character pyramid.
# include <stdio.h>
# include <conio.h>
main( )
{
char i, j;
clrscr();
for(i = 65; i <= 70; i++)
{
for(j = 65; j <= i; j++)
printf("%c", j);
printf("\n");
}
getch( );
}
20) Sample C Program to print character diamond.
# include <stdio.h>
# include <conio.h>
main( )
{
char i, j, n, r;
int s, sp = 40;
clrscr( );
for(i = 65; i <= 75; i += 2)
{
for(s = 1; s <= sp; s++)
printf(" ");
for(j = 65; j < i; j++)
printf("%c", j);
printf("\n");
sp = sp - 2;
}
sp = sp + 4;
for(n = 73; n >= 65; n -= 2)
{
for(s = 1; s <= sp; s++)
printf(" ");
for(r = 65; r <= n; r++)
printf("%c",r);
sp = sp + 2;
}
getch( );
}
21) Sample C Program to find biggest of two no by using ternary operator.
# include <stdio.h>
# include <conio.h>
main( )
{
int a, b, big;
clrscr( );
printf("Enter the value of a");
scanf("%d",&a);
printf("Enter the value of b");
scanf("%d",&b);
big = (a > b)?a:b;
printf("Biggest of the given numbers IS %d",big);
getch();
}
Comments
Post a Comment
Please share your opinions and suggestions or your experience in the comments section. This way we can all help each other...
Experienced guys can share their resumes at admin@interview-made-easy.com