To what value do nonglobal variables default?
1) auto
2) register
3) static
Answers were Sorted based on User's Feedback
Answer / anilkumar927@gmail.com
static
explation:
all non global variables are act as static
all local variables are act as auto
| Is This Answer Correct ? | 0 Yes | 1 No |
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How can you call a function, given its name as a string?
Do you know what are bitwise shift operators in c programming?
what is pointer?
13 Answers HCL, TCS,
. Explain the differences between fork() and exec() in C
How do you write a program which produces its own source code as its output?
Tell me with an example the self-referential structure?
Are pointers integers in c?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
What is wrong with this initialization?
write a program that finds the factorial of a number using recursion?