#include<stdio.h>
int main()
{
printf(5+"Good Morning\n");
return 0;
}
Explanation:printf(5+"Good Morning\n"); It skips the 5 characters and prints the given string.
Hence the output is "Morning".
#include<stdio.h> int main() { int a[10],M=0,i,n; printf("enter a value for n\n"); scanf("%d",&n); fo...
No comments:
Post a Comment