int main() { char s[] = "CuriousTab"; char t[25]; cha"> int main() { char s[] = "CuriousTab"; char t[25]; cha">
#include<stdio.h> int main() { char s[] = "CuriousTab"; char t[25]; char *ps, *pt; ps = s; pt = t; while(*ps) *pt++ = *ps++; /* Add a statement here */ printf("%s\n", t); return 0; }
#include<stdio.h> int main() { FILE *fp; fp=fopen("trial", "r"); return 0; }
Example:
#include <stdio.h>
#include <math.h>
int main ()
{
printf ("fmod of 5.5 by 1.3 is %lf\n", fmod (5.5, 1.3) );
return 0;
}
Output:
fmod of 5.5 by 1.3 is 0.300000
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.