Answer Posted / nashiinformaticssolutions
It occurs when a program attempts to access an invalid memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is main () in c language?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Explain what standard functions are available to manipulate strings?
What does %c do in c?
What is function and its example?
int i=10; printf("%d %d %d", i, i=20, i);
What is integer constants?
What functions are in conio h?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is the difference between if else and switchstatement
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Is it fine to write void main () or main () in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
how do you execute a c program in unix.
What are multidimensional arrays?