what is the maximum limit of row and column of a matrix in c
programming. in linux .
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is difference between stdio h and conio h?
How do you define a function?
What is the benefit of using #define to declare a constant?
what is different between auto and local static? why should we use local static?
how could explain about job profile
What is maximum size of array in c?
Explain how many levels deep can include files be nested?
What are types of preprocessor in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is scanf () in c?
How can I ensure that integer arithmetic doesnt overflow?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between #include and #include 'file' ?
What do mean by network ?