How to add two numbers without using semicolon at runtime
Answer Posted / myfriend_shankar
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("9+1= %d ",9+1))
{}
}
| Is This Answer Correct ? | 15 Yes | 4 No |
Post New Answer View All Answers
What is int main () in c?
How will you find a duplicate number in a array without negating the nos ?
Write a program on swapping (100, 50)
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Is the exit() function same as the return statement? Explain.
What is null in c?
What is the difference between malloc calloc and realloc in c?
Explain that why C is procedural?
What is boolean in c?
How do I create a directory? How do I remove a directory (and its contents)?
Why do we use int main instead of void main in c?
Explain what standard functions are available to manipulate strings?
Is multithreading possible in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Can 'this' pointer by used in the constructor?