what is the maximum limit of row and column of a matrix in c
programming. in linux .
Answer Posted / swati pathak
50387
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is calloc malloc realloc in c?
Without Computer networks, Computers will be half the use. Comment.
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Explain a pre-processor and its advantages.
The difference between printf and fprintf is ?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is a memory leak? How to avoid it?
How many types of errors are there in c language? Explain
What is a wrapper function in c?
How many keywords (reserve words) are in c?
What are nested functions in c?
What are pointers? Why are they used?
Explain what is a stream?
What is dynamic variable in c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.