write a C program to print the program itself ?!
Answer Posted / abiraj1030&yahoo.com
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hai");
getch();
}
| Is This Answer Correct ? | 10 Yes | 112 No |
Post New Answer View All Answers
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Is main an identifier in c?
while initialization of array why we use a[][2] why not a[2][]...?
What are the uses of null pointers?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What are global variables?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What type is sizeof?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Why doesnt that code work?
What is #define size in c?
Do you know the use of 'auto' keyword?
Differentiate between a for loop and a while loop? What are it uses?
Can we access array using pointer in c language?
State the difference between realloc and free.