Answer Posted / rani
utility is an software tool like as we have make utilities in gcc
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between structure and union with example?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Why do we use int main?
Is c language still used?
How is actual parameter different from the formal parameter?
Are the variables argc and argv are always local to main?
What is structure pointer in c?
Difference between strcpy() and memcpy() function?
What is the use of the function in c?
Why is a semicolon (;) put at the end of every program statement?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
I need a sort of an approximate strcmp routine?
What is a ternary operator in c?
Write a program for finding factorial of a number.