What is the translation phases used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
how to implement stack work as a queue?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
Explain what is the difference between functions abs() and fabs()?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is a const pointer in c?
What is a const pointer?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
why array index always starts from zero??
Why shouldn’t I start variable names with underscores?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What are different types of variables in c?