Answer Posted / vidhya lakshmi d
#include<stdio.h>
void main()
{
printf("\"hai\"");
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is union and structure in c?
What is a pointer value and address in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
When should the const modifier be used?
How can you find the exact size of a data type in c?
What is pointer in c?
What does sizeof function do?
Ow can I insert or delete a line (or record) in the middle of a file?
How can I get the current date or time of day in a c program?
Is it valid to address one element beyond the end of an array?
What is size of union in c?
Explain how can you avoid including a header more than once?
What is a far pointer in c?
Why is c called a structured programming language?