Compare and contrast compilers from interpreters.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?

8 Answers   Mascot, TCS,


What does calloc stand for?

0 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"

1 Answers  


How can type-insensitive macros be created?

0 Answers  


Write a C program to convert an integer into a binary string?

1 Answers  


What is || operator and how does it function in a program?

0 Answers  


write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.

5 Answers   Temenos,


What is the advantage of c?

0 Answers  


Convert the following expression to postfix and prefix (A+B) * (D-C)

3 Answers   Satyam,


how can I convert a string to a number?

0 Answers  


f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


What functions are used for dynamic memory allocation in c language?

0 Answers  


Categories