How to declare & intiaization of variable in c with example ?
Answers
Answered by
1
Answer:
A variable in C language must be given a type, which defines what type of data the variable will hold.
...
Difference between Variable and Identifier?
Identifier Variable
Example: // a variable int studytonight; // or, a function int
Answered by
2
Answer:
Multiple variables can be initialized in a single statement by single value, for example, a=b=c=d=e=10; NOTE: C variables must be declared before they are used in the c program.
☆ ʜᴏᴘᴇ ɪᴛ ʜᴇʟᴘs ʏᴏᴜ.....
Similar questions