Answer Posted / nithya
#define m main
#include<stdio.h>
void m()
{
printf("Hai");
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can I do graphics in c?
How can you tell whether a program was compiled using c versus c++?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is the difference between malloc() and calloc() function in c language?
swap 2 numbers without using third variable?
Can you please explain the difference between strcpy() and memcpy() function?
which is an algorithm for sorting in a growing Lexicographic order
What is indirection? How many levels of pointers can you have?
What are the scope of static variables?
Explain how can I manipulate strings of multibyte characters?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is difference between && and & in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
if p is a string contained in a string?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?