Is c dynamically typed?
Answer / Ram Mohan
No, C is a statically-typed language. Variables must be explicitly declared with their data types before they can be used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain Doubly Linked Lists?
What is the most efficient way to count the number of bits which are set in an integer?
What are function pointers? Provide an example.
Why shouldn’t I start variable names with underscores?
Who is invented by c?
What does a pointer variable always consist of?
Differentiate between the = symbol and == symbol?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
how do we remove the printed character in printf statement and write next it it
What is difference between static and global variable in c?
how to add our own function in c library please give details.?
How can I rethow can I return a sequence of random numbers which dont repeat at all?