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 malloc return c?
While(1) { } when this loop get terminate is it a infinite loop?
What is c method?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
What are register variables? What are the advantage of using register variables?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
How many bytes are occupied by near, far and huge pointers (dos)?
how to find sum of 5 digits in C?
c program to input values in a table(using 2D array) and print odd numbers from them
c language interview questions & answer
What do you understand by friend-functions? How are they used?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record