Answer Posted / hr@tgksolutions.com
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
how many key words availabel in c a) 28 b) 31 c) 32
What is an identifier?
Should I learn data structures in c or python?
Can we replace the struct function in tree syntax with a union?
What is the function of multilevel pointer in c?
How do I convert a string to all upper or lower case?
What is a macro, and explain how do you use it?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
How can I ensure that integer arithmetic doesnt overflow?
What is the difference between scanf and fscanf?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is a nested formula?
What is structure in c language?