write a C program to print the program itself ?!
Answer Posted / prasanna kumar s
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("welcome 2 c language");
getch();
}
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is calloc()?
Write a program of prime number using recursion.
How many bytes are occupied by near, far and huge pointers (dos)?
What is pointers in c with example?
write a program for the normal snake games find in most of the mobiles.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is const volatile variable in c?
What is c value paradox explain?
while initialization of array why we use a[][2] why not a[2][]...?
What are structural members?
c program for searching a student details among 10 student details
Where define directive used?
Can a variable be both static and volatile in c?
How can I manipulate strings of multibyte characters?
What was noalias and what ever happened to it?