What is static volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
how to find out the reverse number of a digit if it is input through the keyboard?
Is javascript based on c?
write a program to print infinte number
plz let me know how to become a telecom protocol tester. thank you.
What is the value of h?
How do you determine whether to use a stream function or a low-level function?
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); }
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is the difference between ‘g’ and “g” in C?
The file stdio.h, what does it contain?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.