what is the mean of c languages.
Answer / s
c is nothing but a language consisting of small set of a
programming module like function , data type design to
perform a dedicated task.
| Is This Answer Correct ? | 6 Yes | 2 No |
What are types of preprocessor in c?
What are integer variable, floating-point variable and character variable?
difference between ordinary variable and pointer in C?
what is the difference between getch() and getchar()?
Explain c preprocessor?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What is the use of #include in c?
write a programe returns the number of times the character appears in the string
How can I call a function, given its name as a string?
What is string length in c?
C program to find all possible outcomes of a dice?
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