in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first
a) 6.6/a
b) 2*a
c) 3*c
d) 2/n
How to removing white spces in c programming only bu using loops
What is the difference between ‘g’ and “g” in C?
write a own function to compare two strings with out using stringcomparition function?
Does c have class?
what is the height of tree if leaf node is at level 3. please explain
What is a pointer on a pointer in c programming language?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
how to compare two strings without using strcmp() function??
What are header files and what are its uses in C programming?
What does nil mean in c?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is data types?