What is a pragma?
No Answer is Posted For this Question
Be the First to Post Answer
What is unsigned int in c?
write a program in C to swap two variables
What is a char c?
How does C++ help with the tradeoff of safety vs. usability?
If null and 0 are equivalent as null pointer constants, which should I use?
What is the meaning When we write "#include" what is # and what does include does there???
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What are the standard predefined macros?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
Explain how can I convert a number to a string?