Where register variables are stored in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is main return c?
Can two or more operators such as and be combined in a single line of program code?
What is variable in c example?
Explain what standard functions are available to manipulate strings?
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...
What is pass by value in c?
What are the functions to open and close file in c language?
Can i use “int” data type to store the value 32768? Why?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What are the applications of c language?
Where static variables are stored in c?
Write a code on reverse string and its complexity.
Is the exit() function same as the return statement? Explain.