how to make program without <> in libray.


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

Post New Answer

More C Interview Questions

What is the scope of local variable in c?

0 Answers  


explain what is a newline escape sequence?

0 Answers  


what are the difference between ANSI C and Let Us c and Turbo C

4 Answers   LG Soft,


Why isn't any of this standardized in c? Any real program has to do some of these things.

0 Answers  


What is anagram in c?

0 Answers  


What is a Deque?

2 Answers  


I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.

1 Answers  


What are the advantages of Macro over function?

1 Answers  


How can I increase the allowable number of simultaneously open files?

1 Answers   ABC,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


What are directives in c?

0 Answers  


Explain what is wrong with this program statement? Void = 10;

0 Answers  


Categories