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
Compare and contrast compilers from interpreters.
Is main an identifier in c?
provide an example of the Group by clause, when would you use this clause
in linking some of os executables are linking name some of them
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is the use of ?: Operator?
find out largest elemant of diagonalmatrix
Can we use visual studio for c?
Explain what are reserved words?
Explain pointers in c programming?
write a program to rearrange the array such way that all even elements should come first and next come odd
Is c easy to learn?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Why are all header files not declared in every c program?
What are c header files?