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
How to delete a node from linked list w/o using collectons?
#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); }
What is meant by type casting?
What is a scope resolution operator in c?
How do I create a directory? How do I remove a directory (and its contents)?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
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.
What is structure padding and packing in c?
Write a program to swap two numbers without using third variable in c?
why wipro wase
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......
What is your stream meaning?
What is modeling?
When c language was developed?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }