Answer Posted / preethi
2 types of error. syntax error and segmentation fault
Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What are c header files?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Can we compile a program without main() function?
How would you rename a function in C?
How can you increase the allowable number of simultaneously open files?
What is the explanation for modular programming?
Can we change the value of static variable in c?
What are compound statements?
What is the general form of a C program?
Write a program in c to replace any vowel in a string with z?
Which one would you prefer - a macro or a function?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is pass by reference in c?
What are the advantages of Macro over function?