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 |
What is masking?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
explain what is a newline escape sequence?
What is a pointer in c?
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
What should malloc(0) do?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Explain the properties of union. What is the size of a union variable
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not