Computer Science, asked by xahangalib19, 3 days ago

Implement the following functions. (solve by c program)

Attachments:

Answers

Answered by omkardengi08
3

Answer:

Explanation:

#include<stdio.h>

void listnumbersasc(int start,int end)

{

for (int i=start;i<=end;i++)

{printf("%d",i);

}

int main()

{

int s=0;

int e=6;

listnumbersasc(s,e);

return 0;

}

Similar questions