#include<stdio.h> void printName(); void main () { printf("Hello "); printName(); } void printName() { printf("Aimtocode"); }