Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
No Answer is Posted For this Question
Be the First to Post Answer
Are the expressions * ptr ++ and ++ * ptr same?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
What is null pointer in c?
what is a constant pointer in C
biggest of two no's with out using if condition statement
What is memcpy() function?
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 else if ladder?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What are local static variables?
What are the complete rules for header file searching?
What is wrong in this statement? scanf(“%d”,whatnumber);