Monday, December 21, 2020

, ,

r plot program example and how to use it.

 R Plot Function is used to plot a graph in r programming in this r function we can vector and then we get a graph which is about  magnitude vs index.r plot function has so many method which is called according to the passed value to this r plot function.For example we pass two vector plot(c(1,2),c(3,5))...

Friday, December 18, 2020

,

Use of clrscr function in c with example

 clrscr function in C programming is use to clear the screen and move the arrow upper left-hand corner of your computer screen.this function work only for the GCC compiler otherwise use clear/cls command. Example program for clrscr function in c #include<stdio.h> #include<conio.h> int main() { printf("Press any key to clear the screen.\n"); getch(); clrscr(); printf("This...
,

Example program for pow function in c

 pow function c programming is use to computer the power of a given number to the function.pow() c function takes two arguments first one is known as base and second one as power value and pow() c function return a base with the power raised to that base number.Syntax for pow() c [Mathematics]...
, ,

Example program for strcat() function in c

 If you have a computer programming background then we believe you heard the name of concatenation this word in programming language is known for joins to strings.Example program for strcat() function in c Here in c language strcat() function in c use to joins two given string in c programs. Syntax...