First of all, you can't add 2 matrices of different size.
I would try this change:
#include <stdio.h>
int p,q,x,y;
int a[100][100],b[100][100],c[100][100];
void add(){
int p,q,x,y,i,j;
int a[100][100],b[100][100],c[100][100];
for(j=0;j<x;j++)
{
for(i=0;i<y;i++)
{
c[j][i]=a[j][i]+b[j][i];
}
}
printf("Your Addition Result Is: \n\n");
for(j=0;j<x;j++)
{
for(i=0;i<y;i++)
{
printf(" %d ",c[j][i]);
}
printf("\n");
}
}
int main()
{
int p,q,x,y,i,j;
printf("Enter The Rows Number Of 1st Matrix: ");
scanf("%d",&p);
printf("Enter The Columns Number Of 1st Matrix: ");
scanf("%d",&q);
printf("Enter The Rows Number Of 2nd Matrix: ");
scanf("%d",&x);
printf("Enter The Columns Number Of 2nd Matrix: ");
scanf("%d",&y);
int a[100][100],b[100][100],c[100][100];
for(j=0;j<p;j++)
{
for(i=0;i<q;i++)
{
printf("Enter a%d%d ",j+1,i+1);
scanf("%d",&a[j][i]);
}
}
for(j=0;j<x;j++)
{
for(i=0;i<y;i++)
{
printf("Enter b%d%d ",j+1,i+1);
scanf("%d",&b[j][i]);
}
}
add();
return 0;
}
Your code do not behave the way you expect, or you don't understand why !
There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your code is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.
Debugger - Wikipedia, the free encyclopedia[
^]
Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[
^]
Basic Debugging with Visual Studio 2010 - YouTube[
^]
1.11 — Debugging your program (stepping and breakpoints) | Learn C++[
^]
The debugger is here to only show you what your code is doing and your task is to compare with what it should do.