Explain is it better to bitshift a value than to multiply by 2?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
List a few unconditional control statement in c.
What is #include called?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
what is c programing
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
How many bytes is a struct in c?
Is array name a pointer?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
formula to convert 2500mmh2o into m3/hr
Why main is used in c?