what is the maximum limit of row and column of a matrix in c
programming. in linux .

Answers were Sorted based on User's Feedback



what is the maximum limit of row and column of a matrix in c programming. in linux ...

Answer / unmesh

o to 35565

Is This Answer Correct ?    7 Yes 2 No

what is the maximum limit of row and column of a matrix in c programming. in linux ...

Answer / anitya

0 to 65535.

Is This Answer Correct ?    1 Yes 0 No

what is the maximum limit of row and column of a matrix in c programming. in linux ...

Answer / swati pathak

50387

Is This Answer Correct ?    1 Yes 1 No

what is the maximum limit of row and column of a matrix in c programming. in linux ...

Answer / app

65535

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More C Interview Questions

Program to swap the any two elements in an array containing N number of elements?

1 Answers   Bosch, Glenwood, Ugam Solutions,


What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,


What are the header files used in c language?

0 Answers  


What are header files in c programming?

0 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  






Please write the area of a RIGHT ANGLED TRIANGLE.

1 Answers  


increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {

2 Answers   HCL, Syntel, TCS,


Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.

1 Answers  


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....

0 Answers   RBI,


is assignment operator is arithmatic or not

3 Answers   Infosys,


What is a constant?

0 Answers  


Categories