Explain what is output redirection?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
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
write a program to generate 1st n fibonacci prime number
define function
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
can we change the default calling convention in c if yes than how.........?
Dear Sir, we are required the bubble sorting programs Regs Prem
Explain what is the difference between null and nul?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What are 'near' and 'far' pointers?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?