Computer Science, asked by sayalidoshi315, 1 month ago

Write a program using  functions fprintf(),fscanf(),getc(),putc(),fseek(),feof().  ​

Answers

Answered by manojchauhanma2
1

Answer:

include<stdio.h>

// function prototype, also called function declaration.

void swap(int a, int b);

int main()

{

int m = 22, n = 44;

// calling swap function by value.

printf(" values before swap m = %d \nand n = %d", m, n);

Similar questions