How many types of operators are there in c?


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

Post New Answer

More C Interview Questions

What is Heap?

3 Answers  


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

1 Answers  


Is it possible to initialize a variable at the time it was declared?

0 Answers  


Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

0 Answers  






What are global variables and explain how do you declare them?

0 Answers  


What is strcmp in c?

0 Answers  


What is 'bus error'?

0 Answers  


How would you print out the data in a binary tree, level by level, starting at the top?

6 Answers   Amazon, Microsoft,


What are the different types of endless loops?

0 Answers  


what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


Does c have function or method?

0 Answers  


Categories