What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this program statement? void = 10;
What are the header files used in c language?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
Where are some collections of useful code fragments and examples?
What is assert and when would I use it?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
Explain b+ tree?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?