What are the different categories of functions in c?


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

Post New Answer

More C Interview Questions

 Illustrate it   summing the series 2+4+6+......to n terms using  (i) while loop (ii) do-while loop

2 Answers  


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers  


why do we use # in c-language?

1 Answers  


c program to subtract between two numbers without using '-' sign and subtract function.

1 Answers  


main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*

1 Answers  






main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }

2 Answers  


proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?

7 Answers   Hughes,


I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.

1 Answers  


write an interactive program to generate the divisors of a given integer.

7 Answers   TCS,


Write a program to check palindrome number in c programming?

0 Answers  


what is mallloc()?how it works?

4 Answers   Excel,


how to generate the length of a string without using len funtion?

4 Answers  


Categories