I have uploaded all my projects in C, C++, HTML, CSS, Java, and Android Development Projects in a topic-wise sequential manner.
Further posts are uploaded on https://mohitx001.blogspot.com/
public class Ch5_21_WhileLoop { public static void main(String[] args) { //Quick Quiz int i = 100; while (i <= 200) { System.out.print(i + " "); i++; } } }
# include <stdio.h> int main () { FILE * ptr = NULL ; //declaring file pointer // char string[45]="This is another file."; //string to pass in file // ptr=fopen("File.txt","w"); //opens the file to write // fprintf(ptr, "%s", string);//to print content in file // fclose(ptr);// to close the file after using // char string[45]="This is another file's content."; //string to pass in file // ptr=fopen("File.txt","a"); //opens the file to write...
Comments
Post a Comment