Answer Posted / kamil
No, C is not an object oriented programming language
It's a structural programming language
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to declare a variable?
What is difference between structure and union?
What does it mean when a pointer is used in an if statement?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is a constant and types of constants in c?
What is extern c used for?
Explain what is wrong with this statement? Myname = ?robin?;
write a program for the normal snake games find in most of the mobiles.
What is malloc and calloc?
What do you mean by recursion in c?
What does char * * argv mean 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
write a program to copy the string using switch case?
Define circular linked list.
Why calloc is better than malloc?