Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a C program to print the program itself ?!

Answers were Sorted based on User's Feedback



write a C program to print the program itself ?!..

Answer / vara

Most simplest ....

char *p="char *p=%s int main(){ printf(p,p);getchar();}";int
main(){ printf(p,p);getchar();}

Is This Answer Correct ?    0 Yes 4 No

write a C program to print the program itself ?!..

Answer / moumita chatterjee

#include<stdio.h>
#include<conio.h>
int main()
{
FILE *fp;
char c;
fp=fopen("G:\\selfpro.c","r");
if(fp==NULL)
{
puts("File can open");
exit(1);
}
while(1)
{
c=fgetc(fp);
if(c==EOF)
break;
else
printf("%c",c);
}
getch();
return 0;
}

Is This Answer Correct ?    0 Yes 4 No

write a C program to print the program itself ?!..

Answer / 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

write a C program to print the program itself ?!..

Answer / jaroosh

The most simple possible program printing itself on windows :
main()
{
char path[255];
sprintf(path,"cmd.exe /c type \"%s\"",__FILE__);
system(path);
}

on Unix you just use "cat" instead of "type" and necessary
fun to call bash command from c program.

Is This Answer Correct ?    17 Yes 23 No

write a C program to print the program itself ?!..

Answer / sriram

#include<iostream.h>
#include<conio.hg>
int main()
{
clrscr();
printf(" \t hi this is sriram \t \n");
getch();
return 0;
}

Is This Answer Correct ?    4 Yes 93 No

write a C program to print the program itself ?!..

Answer / 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

More C Interview Questions

how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.

3 Answers   Google,


what is the use of c program?

4 Answers   Synergy, Web Synergies,


What is the difference between macros and inline functions?

5 Answers   Global Edge, L&T,


Write a program to print fibonacci series without using recursion?

0 Answers  


Can a program have two main functions?

0 Answers  


Explain how can you determine the size of an allocated portion of memory?

0 Answers  


wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain

3 Answers   TCS,


Why should I prototype a function?

0 Answers  


Explain the properties of union. What is the size of a union variable

0 Answers  


What is an identifier?

0 Answers  


which operator having highest precedence? a.)+ b.)++ c.)= d.)%

4 Answers  


How many levels of pointers can you have?

0 Answers  


Categories