c programs are converted into machine language with the help of

a) an interpreter

b) a compiler

c) an operatinf system

d) none of the above


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

Post New Answer

More C Interview Questions

Write a program to print distinct words in an input along with their count in input in decreasing order of their count

0 Answers  


Can a variable be both static and volatile in c?

0 Answers  


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

0 Answers  


void main() { int a=1; while(a++<=1) while(a++<=2); }

4 Answers   HCL,


what is used instead of pointers in java than c?

1 Answers   Vuram,


What are the various topologies? Which one is the most secure?

2 Answers  


main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }

4 Answers  


What is memmove?

1 Answers   Oracle,


Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.

6 Answers   Wipro,


/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }

1 Answers   CDAC,


Can two or more operators such as and be combined in a single line of program code?

0 Answers  


what is the little endian and big endian?

1 Answers  


Categories