what will be the output off the following program?
#include<stdio.h>
int main()
{
int a;
a=015+0*71+5;
printf("%d,a");
return0;
}

Answer Posted / aravind

error bcoz of format specifier.

Is This Answer Correct ?    11 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the disadvantages of c language?

622


What is sizeof int?

639


What is variables in c?

609


What is the use of #include in c?

580


Is null equal to 0 in sql?

655






How do I determine whether a character is numeric, alphabetic, and so on?

623


What does %p mean?

596


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

626


Why main is not a keyword in c?

652


What is the use of header?

624


Can you write the function prototype, definition and mention the other requirements.

664


The statement, int(*x[]) () what does in indicate?

648


What is c programming structure?

620


What is a memory leak? How to avoid it?

577


write a program to copy the string using switch case?

2401