Chapter - 14: More Issues In Input-Output

Point out the errors, if any, in the following program


A
Sections
3
Exercises
#include<stdio.h>
int main ( int ac, char ( * ) av[ ] )
{
	printf ( "\n%d", ac ) ;
	printf ( "\n%s", av[0] ) ;
	return 0;
}

 

Error: The Second argument have a syntax error.


© 2021 Garbage Valuegarbage value logo