how to make a scientific calculater ?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is file in c preprocessor?

0 Answers  


what is develop in c language

2 Answers  


given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)

6 Answers   amu, TCS,


Explain bitwise shift operators?

0 Answers  


What functions are used for dynamic memory allocation in c language?

0 Answers  






int *a[5] refers to

12 Answers   TCS,


Explain how can you check to see whether a symbol is defined?

0 Answers  


4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

5 Answers  


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  


how to find anagram without using string functions using only loops in c programming

0 Answers  


Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?

4 Answers  


A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }

2 Answers   Wipro,


Categories