Which of the following about automatic variables within a
function is correct ?
a.its type must be declared before using the variable
b.they are local
c.they are not initialised to zero
d.they are global.
Answer Posted / subbu
options a,b,c are correct
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What are pointers? Why are they used?
How can I manipulate strings of multibyte characters?
How can I change their mode to binary?
Can you pass an entire structure to functions?
Which is more efficient, a switch statement or an if else chain?
What is operator promotion?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is meant by type specifiers?
Can true be a variable name in c?
string reverse using recursion
What is 'bus error'?
Can we add pointers together?
What is c basic?