Write a program that his output * *** *****
Answer / srujitha
int main()
{
int n = 5;
for( int i = 0; i <= n; i = i + 2)
{
for( int j = 0; j<=i;j++)
{
printf("*");
}
printf(" ");
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Explain can you assign a different address to an array tag?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
How are pointers declared in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
Differentiate between static and dynamic modeling.
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
program to find the roots of a quardratic equation
How can I run c program?
what is the function of void main()?
What is return type in c?