C Interview Questions
Questions Answers Views Company eMail

Why is python slower than c?

604

What are volatile variables in c?

519

What is static function in c?

635

What is the scope of global variable in c?

556

What is the default value of local and global variables in c?

559

What is const volatile variable in c?

577

Why we use conio h in c?

582

Where are local variables stored in c?

570

Where register variables are stored in c?

552

What is the scope of local variable in c?

578

What is const keyword in c?

749

What is a global variable in c?

587

Why static is used in c?

622

What extern c means?

539

What is default value of global variable in c?

563


Post New C Questions

Un-Answered Questions { C }

What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

587


Explain enumerated types.

597


What is openmp in c?

612


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1138


Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

615






Where is c used?

648


What's a good way to check for "close enough" floating-point equality?

628


Can you assign a different address to an array tag?

698


What is the explanation for cyclic nature of data types in c?

647


What is a function in c?

571


Why is this loop always executing once?

617


What is sorting in c plus plus?

565


Tell us something about keyword 'auto'.

666


What is structure in c definition?

574


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

1997