What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
1 4413what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
2 5633write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
TCS,
1 3986
How can I find out if there are characters available for reading?
What is #include stdio h and #include conio h?
What is null in c?
What is function and its example?
write a program in c language to print your bio-data on the screen by using functions.
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What is the difference between exit() and _exit() function?
Why cant I open a file by its explicit path?
Explain how are portions of a program disabled in demo versions?
Why array is used in c?
Why does the call char scanf work?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What does void main () mean?