What is an arrays?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best organizational structure?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
Why array starts with index 0
What is the difference between abs() and fabs() functions?
difference between function & structure
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
swap two integer variables without using a third temporary variable?
convert 0.9375 to binary
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
WHAT IS FLOAT?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.