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 |
difference between function & structure
how to find out the union of two character arrays?
code for find determinent of amatrix
What is difference between class and structure?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is the use of in c?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
Will Macros support multiple arguments ?
Difference between constant pointer and pointer to a constant.
Why header files are used?