How to add two numbers without using semicolon n c????
Answers were Sorted based on User's Feedback
Answer / sorab aggarwal
#include<conio.h>
#include<stdio.h>
void main()
{
if(printf("%d",5+6))
{}
getch();
}
Is This Answer Correct ? | 27 Yes | 8 No |
Answer / ashish lamse
#include<iostream.h>
#include<stdio.h>
#include<conio.h>
void main()
{
if(cout<<"add of two no="<<10+20)
{}
if(getch())
{}
}
Is This Answer Correct ? | 4 Yes | 1 No |
What is the use of ?
How to develop software using "c" programming?
What is C++
what is answer for perfect number????????????????
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Define C in your own Language.
What is double pointer?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What do you mean by a local block?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
What does c value mean?
What is structure in c language?