Answers for "source code fopne in C"

0

how to open a website in c

#include <stdio.h>
#include <stdlib.h>
int main()
{     
	system("START www.your_website.com");
}
Posted by: Guest on May-17-2020
1

%.*s in c

example:
printf("%.*s",3,"hello");

output:hel
here 3 represents the length of the string to be printed in the "hello string".
Posted by: Guest on May-11-2020

Code answers related to "Objective-C"

Browse Popular Code Answers by Language