What are c preprocessors?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for egyptian fractions in c?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Can we change the value of #define in c?
What is the difference between mpi and openmp?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
What is a nested loop?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Is it acceptable to declare/define a variable in a c header?
Explain how are portions of a program disabled in demo versions?
what is the use of call back function in c?tell me with example
what is a non volatile key word in c language?
When do we get logical errors?