how many error occurs in C language ?
Answer Posted / guest
3 types of error occurs in c language ie syntax error,
segment error, and linking error.
syntax error and segment error occurs during compailation
and linking error occurs during runtime
Is This Answer Correct ? | 58 Yes | 28 No |
Post New Answer View All Answers
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Does c have function or method?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
How is null defined in c?
What is the difference between text and binary modes?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Define circular linked list.
How can I do graphics in c?
What is difference between %d and %i in c?
What are compound statements?
Are pointers integer?
What are preprocessor directives in c?
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
Explain the use of bit fieild.
How many types of functions are there in c?