What is variable in c with example?
Answer / utsav patel
in c language five types of variable are present
1) local variable.
2) global variable.
3) static variable.
4) automatic variable.
5) external variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between a structure and a union?
Explain union.
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
What is meant by initialization and how we initialize a variable?
please give code for this 1 2 4 7 11 16
what is void pointer?
what is difference between C and C++
Can you write a programmer for FACTORIAL using recursion?
What is sizeof array?
How do I declare a pointer to an array?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
What is context in c?