#include <stdio.h> void function(char *p) { printf("%s", p); } void main() { char str[] = "Interveiw Mania"; function(str); }
Interveiw Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.