Click here to Skip to main content
15,900,258 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Detection of USB device connect and discoonect in vc++ DLL Pin
David Crow11-Nov-09 4:14
David Crow11-Nov-09 4:14 
GeneralRe: Detection of USB device connect and discoonect in vc++ DLL Pin
Covean11-Nov-09 4:16
Covean11-Nov-09 4:16 
GeneralRe: Detection of USB device connect and discoonect in vc++ DLL Pin
draxayani12-Nov-09 1:55
draxayani12-Nov-09 1:55 
GeneralRe: Detection of USB device connect and discoonect in vc++ DLL Pin
Covean12-Nov-09 2:29
Covean12-Nov-09 2:29 
GeneralRe: Detection of USB device connect and discoonect in vc++ DLL Pin
draxayani12-Nov-09 2:41
draxayani12-Nov-09 2:41 
QuestionHow to know which version of WTL i am having in my machine. [modified] Pin
pandit8411-Nov-09 3:40
pandit8411-Nov-09 3:40 
AnswerRe: How to know which version of WTL i am having in my machine. Pin
Randor 11-Nov-09 9:23
professional Randor 11-Nov-09 9:23 
Questionprogram Pin
singh.niraj40@yahoo.com11-Nov-09 2:40
singh.niraj40@yahoo.com11-Nov-09 2:40 
/* Program for multiplication of two matrices */
# include <stdio.h>
# include <conio.h>
# define ROW 3
# define COL 3
void main()
{
int mat1[ROW][COL],mat2[ROW][COL],mat3[ROW][COL];
int i,j,k;
clrscr();
printf("\n Enter matrix mat1(%dx%d)row-wise:\n ",ROW,COL);
for(i=0;i<ROW;i++)
{
for(j=0;j<COL;j++)
{
scanf("%d",&mat1[i][j]);
}
printf("\n Matrix 1 is %d \n",mat1[i][j]);

printf("\n Enter matrix mat2(%dx%d)row-wise:\n ",ROW,COL);
for(i=0;i<ROW;i++)
{
for(j=0;j<COL;j++)
scanf("%d",&mat2[i][j]);
}
printf("\n Matrix 2 is %d \n",mat2[i][j]);
}
//Multiplication
for(i=0;i<ROW;i++)
for(j=0;j<COL;j++)
{
mat3[i][j]=0;
for(k=0;k<COL;k++)
mat3[i][j]+=mat3[i][j]+mat1[i][k] * mat2[k][j];
}
// End of multiplication
printf("\n The Resultant matrix mat3 is: \n");
for(i=0;i<ROW;i++)

for(j=0;j<COL;j++)
printf("\n %d",mat3[i][j]);

printf("\n");

getch();
}







main yeh program ka code run kara raha hoo par ismein kuch logical error hai
jo main remove nahi kar paa raha hoo.plzzzzzzzz help me..
QuestionRe: program Pin
Maximilien11-Nov-09 3:12
Maximilien11-Nov-09 3:12 
AnswerRe: program Pin
Krischu11-Nov-09 3:21
Krischu11-Nov-09 3:21 
AnswerRe: program Pin
MindCoder7912-Nov-09 19:45
MindCoder7912-Nov-09 19:45 
Questionhow to using the bmp pic of the resource to fill a rectangle? Pin
kk_Kevin11-Nov-09 2:31
kk_Kevin11-Nov-09 2:31 
QuestionRe: how to using the bmp pic of the resource to fill a rectangle? Pin
David Crow11-Nov-09 3:25
David Crow11-Nov-09 3:25 
AnswerRe: how to using the bmp pic of the resource to fill a rectangle? Pin
kk_Kevin11-Nov-09 19:47
kk_Kevin11-Nov-09 19:47 
QuestionRe: how to using the bmp pic of the resource to fill a rectangle? Pin
David Crow12-Nov-09 3:07
David Crow12-Nov-09 3:07 
AnswerRe: how to using the bmp pic of the resource to fill a rectangle? [modified] Pin
kk_Kevin11-Nov-09 21:00
kk_Kevin11-Nov-09 21:00 
QuestionRe: how to using the bmp pic of the resource to fill a rectangle? Pin
David Crow12-Nov-09 3:09
David Crow12-Nov-09 3:09 
AnswerRe: how to using the bmp pic of the resource to fill a rectangle? Pin
Covean11-Nov-09 3:31
Covean11-Nov-09 3:31 
GeneralRe: how to using the bmp pic of the resource to fill a rectangle? Pin
kk_Kevin11-Nov-09 19:49
kk_Kevin11-Nov-09 19:49 
QuestionRe: how to using the bmp pic of the resource to fill a rectangle? Pin
David Crow12-Nov-09 3:10
David Crow12-Nov-09 3:10 
QuestionProcess Termination waiting for Event - Win32 Pin
Krischu11-Nov-09 1:08
Krischu11-Nov-09 1:08 
AnswerRe: Process Termination waiting for Event - Win32 Pin
Covean11-Nov-09 1:27
Covean11-Nov-09 1:27 
GeneralRe: Process Termination waiting for Event - Win32 [modified] Pin
Krischu11-Nov-09 2:35
Krischu11-Nov-09 2:35 
GeneralRe: Process Termination waiting for Event - Win32 Pin
Covean11-Nov-09 3:03
Covean11-Nov-09 3:03 
GeneralRe: Process Termination waiting for Event - Win32 [modified] Pin
Krischu11-Nov-09 3:43
Krischu11-Nov-09 3:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.