How to add two numbers without using semicolon n c????

Answer Posted / sorab aggarwal

#include<conio.h>
#include<stdio.h>
void main()
{
if(printf("%d",5+6))
{}
getch();
}

Is This Answer Correct ?    27 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Compare and contrast compilers from interpreters.

896


Is main an identifier in c?

838


provide an example of the Group by clause, when would you use this clause

1956


in linking some of os executables are linking name some of them

1884


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

802


What is the use of ?: Operator?

891


find out largest elemant of diagonalmatrix

1876


Can we use visual studio for c?

770


Explain what are reserved words?

838


Explain pointers in c programming?

853


write a program to rearrange the array such way that all even elements should come first and next come odd

2019


Is c easy to learn?

735


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

904


Why are all header files not declared in every c program?

813


What are c header files?

777