will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);
Answer Posted / raghav
it showing the null pointer assignment
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is static volatile in c?
What is the role of this pointer?
How can you increase the size of a statically allocated array?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Why header files are used?
What are the application of c?
What is volatile keyword in c?
What is the value of h?
Explain how does flowchart help in writing a program?
How do you define a string?
What is atoi and atof in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is difference between array and pointer in c?
How can you avoid including a header more than once?
Explain what does it mean when a pointer is used in an if statement?