Patrick Birt has held a variety of roles in the IT industry. Patrick began their career in 1985 as a Telecommunications Officer at the US Department of Defense. In 1996, they moved to EDS as a Systems Engineer. In 2000, they became a Systems Architect at inknowvator, inc. and then in 2001, they took on the role of Sr. Technical Consultant at G2 Associates. Finally, in 2003, they were appointed President/CEO of AdRem Systems.
#include <stdio.h>
int main()
{
int n, i, j, k;
printf("Enter the number of lines: ");
scanf("%d", &n);
for(i=1; i<=n; i++)
{
for(j=i; j<n; j++)
{
printf(" ");
}
for(k=1; k<(i*2); k++)
{
printf("*");
}
printf("\n");
}
return 0;
}
Sign up to view 2 direct reports
Get started
This person is not in any teams