Showing posts with label c function. Show all posts
Showing posts with label c function. Show all posts

Monday, April 26, 2021

, , , , ,

strncpy() Function in c programming with example

 strncpy() Function in c programming is used to copies the specified number of characters from source string (src) to destination string and this is an only difference between strcpy() function and strncpy() Function. Syntax for strncpy() in c char *strncpy(char *str1, const char *str2, size_t n) In the given syntax str1 is Destination string and str2 – Source string.strncpy() in c return...

Wednesday, April 14, 2021

, , , ,

line function in computer graphics

line function in c programming :-Well line function in c computer graphics is used as it name says to draw a line from a point(x1,y1) to point(x2,y2) where (x2,y2) are end points to draw a line.Here you can also check the c program to draw a line in computer graphics. (adsbygoogle = window.adsbygoogle || []).push({});  C example program #include <graphics.h>#include <conio.h>main(){ ...