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 |
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the difference between constant pointer and pointer to a constant. Give examples.
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Write a program to print factorial of given number without using recursion?
write a program to find the frequency of a number
What functions are used for dynamic memory allocation in c language?
Write a c program using for loop in switch case?
Is malloc memset faster than calloc?
Explain what is the difference between the expression '++a' and 'a++'?
Why array is used in c?