what are the 10 different models of writing an addition
program in C language?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
c program to subtract between two numbers without using '-' sign and subtract function.
Explain high-order bytes.
Why double pointer is used in c?
What is clrscr in c?
Write a program to identify if a given binary tree is balanced or not.
write a program to print infinte number
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
The differences between Windows XP and Windows Visa
Why doesnt long int work?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type