How the C program can be compiled?

Answer Posted / sanjay singh

Simply by pressing Alt + F9 Key from the keyboard.


"Note we can also execute a program with compiling if it has
no error in the program in the coding form"

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define and explain about ! Operator?

615


What is the difference between union and structure in c?

576


Is c# a good language?

610


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1314


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

717






What is an array in c?

596


Define macros.

785


Why do we need a structure?

588


Which control loop is recommended if you have to execute set of statements for fixed number of times?

809


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

645


What is the use of bit field?

641


How do you define a string?

655


Do array subscripts always start with zero?

784


What are pragmas and what are they good for?

577


Why main function is special give two reasons?

948