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...

which will be first in c compiling ,linking or compiling
,debugging.

Answer Posted / narender b

first it would be linking and then after linking complete..
the compiling complete its job

debugging is the process to debugg the code to find the bug
debugging is not the process of compling

Is This Answer Correct ?    2 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to delete a node from linked list w/o using collectons?

2722


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1003


What is meant by type casting?

1020


What is a scope resolution operator in c?

1206


How do I create a directory? How do I remove a directory (and its contents)?

1098


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

1071


Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.

1035


What is structure padding and packing in c?

1004


Write a program to swap two numbers without using third variable in c?

1070


why wipro wase

2249


can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......

1809


What is your stream meaning?

1127


What is modeling?

1001


When c language was developed?

1011


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1228