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 |
how we do lcm of two no using c simple if while or for statement
what is meant by c
what is the difference between #include<stdio.h> and #include "stdio.h" ?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
Explain what is a 'locale'?
Can main () be called recursively?
What is a memory leak? How to avoid it?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
How we can set and clear bit in a byte using macro function?
How can I run c program?
What is pragma c?
simple program for virtual function?