Write a programe print the sum of series 0,1,2,.....10
Answer Posted / s.m.jyo
main()
{
int i;
printf("sum of series is:");
for(i=0;i=10;i++)
i=i+i;
scanf("%d",&i);
printf("%d",i);
}
| Is This Answer Correct ? | 7 Yes | 9 No |
Post New Answer View All Answers
what will be the output for the following main() { printf("hi" "hello"); }
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is an example of structure?
What is a null string in c?
Add Two Numbers Without Using the Addition Operator
How can I do serial ("comm") port I/O?
write a progrmm in c language take user interface generate table using for loop?
What is difference between structure and union with example?
What is #line in c?
What is the difference between near, far and huge pointers?
Give me the code of in-order recursive and non-recursive.
Is a house a shell structure?
How can you find the exact size of a data type in c?
Explain the Difference between the New and Malloc keyword.