Is c dynamically typed?



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

Post New Answer

More C Interview Questions

Explain Doubly Linked Lists?

3 Answers  


What is the most efficient way to count the number of bits which are set in an integer?

1 Answers  


What are function pointers? Provide an example.

1 Answers  


Why shouldn’t I start variable names with underscores?

1 Answers  


Who is invented by c?

24 Answers   Infosys, Mphasis,


What does a pointer variable always consist of?

1 Answers  


Differentiate between the = symbol and == symbol?

1 Answers  


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


how do we remove the printed character in printf statement and write next it it

1 Answers  


What is difference between static and global variable in c?

1 Answers  


how to add our own function in c library please give details.?

1 Answers   TCS,


How can I rethow can I return a sequence of random numbers which dont repeat at all?

1 Answers  


Categories