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
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a high level language?
Explain what is the benefit of using #define to declare a constant?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
how to write a program which adds two numbers without using semicolon in c
Is there any book to know about Basics of C Language?
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
How will you allocate memory to a double pointer ?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Please list all the unary and binary operators in C.
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,