CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: codighack

Search: Search took 0.02 seconds.

  1. Re: How do I find the product of two rectangular matrices in C Matrix Multiplication?

    Here is one example program:



    #include<stdio.h>
    int main(){
    int m, n, p, q, i, j, k;
    int a[10][10], b[10][10], res[10][10];

    printf("Enter the order of first matrix\n");
  2. Replies
    3
    Views
    9,871

    Re: How do I master in Python?

    Thanks for sharing.

    I remember, I used developer.com to complete my college assignment on a project that I was working on. :-)

    I surely will check the Python Programming section.

    If you...
  3. Replies
    3
    Views
    9,871

    How do I master in Python?

    Hi All,

    I started learning Python from one of the Edtech institutes and I am kinda liking the way they are teaching it.

    Being a beginner in Python I wanted to know if there are any resources...
  4. A Fast method of Converting String to int array in Java?

    Hi, :wave:

    I am using Java V7. Is there a fast way to convert String to int array in Java?

    The Given format is "4 343 234 -24" and so on. Spaces between the numbers, amount of numbers is known...
  5. Replies
    1
    Views
    1,205

    Reverse String in Python

    Hi I have recently joined the community here is my first doubt:

    I was reading the python reverse string article and I understood the concept but I got stuck while implementing the same using loop....
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured