Answer Posted / 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 |
Post New Answer View All Answers
What is the use of extern in c?
Are c and c++ the same?
Define Array of pointers.
What are global variables and how do you declare them?
Why do we use stdio h and conio h?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is a union?
Explain the difference between call by value and call by reference in c language?
using only #include
Which function in C can be used to append a string to another string?
How does pointer work in c?
Why doesnt the call scanf work?
Define recursion in c.
Differentiate between the expression “++a” and “a++”?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above