what is the stackpointer
Answers were Sorted based on User's Feedback
Answer / kumaresan g
Stack pointer points the top most element of the stack.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rajendra.p
An address that identifies the location of the most recent
item placed on the stack
| Is This Answer Correct ? | 2 Yes | 1 No |
Why does everyone say not to use gets?
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 sizeof array?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
how to find out the reverse number of a digit if it is input through the keyboard?
What is the difference between array and pointer?
what is difference between strcmp & palindrome?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is the difference between #include <header file> and #include “header file”?
A stack can be implemented only using array?if not what is used?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
compare array with pointer?