Difference between echo and echo -e in Shell script
echo: It is used to print the line of text which are given between the double quotes(“….”). Literally it just
Continue readingecho: It is used to print the line of text which are given between the double quotes(“….”). Literally it just
Continue readingSample Table name :Employee EmployeeId Name Location 123 Keven Newyork 456 david Chicago OREPLACE Function in Teradata The OREPLACE function
Continue readingHadoop command to check whether the directory exists or not: Syntax: hdfs dfs -test -d hdfs_path Example: hdfs dfs -test
Continue readingExplanation The Fibonacci series are integer sequence of 0,1,1,2,3,5,8…..The first two numbers in the series are 0 and 1.The subsequent
Continue readingAddition Operation in C C Languages providing multiple operators to do mathematical operations.The addition operator(+) helps to perform the addition
Continue readingDescription: The first C program to print the Hello World in the output screen. Implementation
1 2 3 4 5 6 |
#include<stdio.h> int main() { printf("Hello World"); return 0; } |
Output: Explanation
1 |
#include<stdio.h> |
This
Continue reading