What is the translation phases used in c language?


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

Post New Answer

More C Interview Questions

f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


what are the static variables

8 Answers   HCL, iFlex, TCS, Wipro,


What is the meaning of int *x[]();?

1 Answers  


Write a program in c to replace any vowel in a string with z?

0 Answers   IBS,


what is the difference between malloc() and calloc() function?

1 Answers  






How do we print only part of a string in c?

0 Answers  


Explain the advantages of using macro in c language?

0 Answers  


How we can write a value to an address using macro..?

0 Answers   Tata Elxsi,


What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none

9 Answers   IBM,


Find greatest number out of 10 number without using loop.

5 Answers   TCS,


Differentiate between functions getch() and getche().

0 Answers  


What is the Lvalue and Rvalue?

2 Answers  


Categories