Compare and contrast compilers from interpreters.
No Answer is Posted For this Question
Be the First to Post Answer
how to make program without <> in libray.
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
What language is windows 1.0 written?
Can we use visual studio for c?
How do I initialize a pointer to a function?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
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...
Do you have any idea how to compare array with pointer in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
int *a[5] refers to
Why is c faster?
What is use of #include in c?