Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,039 questions

52,004 answers

573 users

How to find determinant of 2x2 matrix in C

1 Answer

0 votes
#include <stdio.h>

int main(void)
{
    int arr[2][2] = { {7, 3}, {8, 5} };

    long determinant = arr[0][0] * arr[1][1] - arr[1][0] * arr[0][1];
    
    printf("%d", determinant);

    return 0;
}





/*
run:

11

*/

 



answered Feb 26, 2023 by avibootz
edited Jan 20, 2024 by avibootz

Related questions

1 answer 186 views
1 answer 100 views
1 answer 2,353 views
1 answer 92 views
1 answer 98 views
1 answer 92 views
1 answer 94 views
...