How the C program can be compiled?

Answer Posted / guest

after writing entire code first compile the program using
alt+F9.Then look at the errors and warnings ,after all the
errors and warnings are rectified u can run the program by
ctrl+F9.to watch the output go through the key alt+F5.

Is This Answer Correct ?    16 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of arrays in c?

624


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

684


What is stack in c?

615


Here is a good puzzle: how do you write a program which produces its own source code as output?

600


main() { printf("hello"); fork(); }

698






illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

1586


How will you divide two numbers in a MACRO?

715


Here is a neat trick for checking whether two strings are equal

566


What is scope rule in c?

608


What is the significance of an algorithm to C programming?

597


What is structure of c program?

608


Is it possible to have a function as a parameter in another function?

599


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1959


how to execute a program using if else condition and the output should enter number and the number is odd only...

1660


What is the explanation for the dangling pointer in c?

683