Explain how can you avoid including a header more than once?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
#define f(x) main() { printf("\n%d",f(2+2)); }
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
When we use void main and int main?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
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?
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
write a c program to find biggest of 3 number without relational operator?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Subtract Two Number Without Using Subtraction Operator