What are predefined functions in c?


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

Post New Answer

More C Interview Questions

What is the function of volatile in c language?

0 Answers  


What are different types of pointers?

0 Answers  


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

0 Answers  


What is the collection of communication lines and routers called?

0 Answers  


How to declare pointer variables?

0 Answers  






Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


What are the types of unary operators?

0 Answers  


to find the program of matrix multiplication using arrays

6 Answers   Bhel,


What is the Lvalue and Rvalue?

2 Answers  


Why is %d used in c?

0 Answers  


Explain how can I read and write comma-delimited text?

0 Answers  


write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3

0 Answers   ADP,


Categories