What are inbuilt functions in c?


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

Post New Answer

More C Interview Questions

write a program in c language for the multiplication of two matrices using pointers?

8 Answers   Ignou,


/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*

6 Answers  


write a method for an array in which it can display the largest n next largest value.

1 Answers   Value Labs,


1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output

2 Answers  


In how much time you will write this c program? Prime nos from 1 to 1000

2 Answers   TCS,






Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.

6 Answers   Wipro,


What is indirection? How many levels of pointers can you have?

0 Answers   Aspire, Infogain,


how can we Declare a variable in c without defining it.

1 Answers   TCS,


get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement

3 Answers  


struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā€œ%dā€,s.x); }

2 Answers   Vector,


WAP to find that given no is small or capital

3 Answers  


What are # preprocessor operator in c?

0 Answers  


Categories