How to print "Hi World" without using semi colon?
Answer Posted / bhumit
main()
{
clrscr();
if(printf("HI World"))
getch();
}
| Is This Answer Correct ? | 20 Yes | 6 No |
Post New Answer View All Answers
Write program to remove duplicate in an array?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Is there a way to compare two structure variables?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is indirection? How many levels of pointers can you have?
What is int main () in c?
What are the 4 types of organizational structures?
Explain how can type-insensitive macros be created?
Explain what are the standard predefined macros?
What is operator precedence?
Explain what is wrong with this program statement? Void = 10;
Explain how many levels deep can include files be nested?
Explain how does free() know explain how much memory to release?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Define macros.