Skip to main content

Featured

The STEM Revolution: From Classrooms to Code Camps

  In Nepal, the "STEM Revolution" represents a significant departure from memorization and a move toward experiential, hands-on science, technology, engineering, and math education. This approach recognizes that although traditional classrooms are fundamental, they frequently fail to provide students with the critical thinking and problem-solving abilities that the modern world requires.  It is motivated by a shared understanding that in order for Nepal's youth to prosper in the digital era, they must not only comprehend ideas but also learn how to use them creatively to address pressing issues. Making education relevant and enabling students to be creators of technology rather than merely consumers are the goals of this revolution. Dynamic, unofficial learning settings like maker spaces, robotics clubs, and programming camps are at the core of this movement. These programs, which are frequently run by neighborhood tech companies and non-profits, act as dynamic centers...

Functions in Stdio.h header file in C

 The stdio.h header file stands for  Standard Input Output. Simply we can say that it provides us the function for input and output process.

Here are some of the functions in stdio.h

printf() 

to print the integer, character, string etc. on the output screen.

scanf()

It reads the character, string, integer etc from the keyboard.

getc()

It reads the character from the file.

putc()

It writes the character to the file.

fopen()

It opens the file and all file handling functions are defined in stdio.h header file.

fclose()

It closes the opened file.

remove()

It deletes the file.

fflush()

It flushes the file.

Comments

Popular Posts