progrem to generate the following series
1
12
123
1234
12345
Answer Posted / shakil ahmed
#include<stdio.h>
#include<conio.h>
main()
{
int i, j;
for(i=1; i<=5; i++)
{
for(j=1; j<=i; j++)
{
printf("%d",j);
}
printf("\n");
}
}
| Is This Answer Correct ? | 65 Yes | 16 No |
Post New Answer View All Answers
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Explain 'bit masking'?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What happens if header file is included twice?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What is f'n in math?
How can I get random integers in a certain range?
Tell me is null always defined as 0(zero)?
using for loop sum 2 number of any 4 digit number in c language
Write a program to know whether the input number is an armstrong number.
What is string in c language?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What is the difference between the = symbol and == symbol?
Can we increase size of array in c?