Explain how can I avoid the abort, retry, fail messages?
No Answer is Posted For this Question
Be the First to Post Answer
I have seen function declarations that look like this
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
what are the advantages & disadvantages of unions?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Tell me can the size of an array be declared at runtime?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Why is struct padding needed?
Why is c so important?
Why header files are used?
explain what are pointers?
What would be an example of a structure analogous to structure c?