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
Explain what is meant by 'bit masking'?
How to write c functions that modify head pointer of a linked list?
Why does not c have an exponentiation operator?
What is the use of define in c?
Are there any problems with performing mathematical operations on different variable types?
Combinations of fibanocci prime series
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
How can you check to see whether a symbol is defined?
When should the volatile modifier be used?
What are comments and how do you insert it in a C program?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is the right way to use errno?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is a node in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.