How to add two numbers without using semicolon at runtime
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / snehal sawant
#include<stdio.h>
void main()
{
while(!printf("11+20= %d ",11+20))
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
how to capitalise first letter of each word in a given string?
Who is the main contributor in designing the c language after dennis ritchie?
What is void main () in c?
What is the difference between calloc() and realloc()?
what is an ERP?
Write a code to remove duplicates in a string.
How can I invoke another program from within a C program?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is meant by type casting?
How many levels of pointers have?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }