write a c program to find the sum of five entered numbers
using an array named number
No Answer is Posted For this Question
Be the First to Post Answer
What is scope and lifetime of a variable in c?
What is meant by operator precedence?
What are 'near' and 'far' pointers?
What are the types of functions in c?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
What is a function in c?
explain what is an endless loop?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Why void main is used in c?
Is c language still used?
Write a program to print "hello world" without using a semicolon?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.