how to make program without <> in libray.
What is the scope of local variable in c?
explain what is a newline escape sequence?
what are the difference between ANSI C and Let Us c and Turbo C
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is anagram in c?
What is a Deque?
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.
What are the advantages of Macro over function?
How can I increase the allowable number of simultaneously open files?
#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
What are directives in c?
Explain what is wrong with this program statement? Void = 10;