Differentiate between the expression “++a” and “a++”?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of ?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What are qualifiers?
How to declare pointer variables?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
What is the use of getchar() function?
Is linux written in c?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
What is the difference between malloc() and calloc()?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }