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 / srinivasu

18,a

Is This Answer Correct ?    12 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is wrong with this program statement?

610


Difference between macros and inline functions? Can a function be forced as inline?

712


Explain how do you determine a file’s attributes?

594


What does the format %10.2 mean when included in a printf statement?

1091


All technical questions

1511






How many main () function we can have in a project?

615


Are there any problems with performing mathematical operations on different variable types?

576


How can I make sure that my program is the only one accessing a file?

680


What is use of null pointer in c?

572


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1664


PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE

1473


What is quick sort in c?

585


A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

627


What is the difference between class and object in c?

583


How can I trap or ignore keyboard interrupts like control-c?

620