main()
{
int i,n=010;
int sum=0;
for(i=1;i<=n;i++)
{s=s+i;
}
printf("%d",&s);
getch();
}
Post New Answer View All Answers
What does 3 mean in texting?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Why c is called a mid level programming language?
What is the difference between exit() and _exit() function?
What is int main () in c?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Wt are the Buses in C Language
What is structure data type in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Explain low-order bytes.
What is a good way to implement complex numbers in c?
What is scanf_s in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
write a programming in c to find the sum of all elements in an array through function.