Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
Answer / un educator
Select name ,sysdate - joindate as exp,salary from employer where sysdate -joindate=5 and salary <15000
| Is This Answer Correct ? | 0 Yes | 0 No |
how to return 1000 variables from functio9n in c?plz give me code also
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is #define in c?
how we can say java is platform independent, while we require JVM for that particular Operating System?
program to find middle element of linklist?
Can a pointer be static?
What is scope and lifetime of a variable in c?
program to find the roots of a quardratic equation
What is a protocol in c?
What is #include stdio h?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif