What is pointer & why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use int main?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Explain how can I prevent another program from modifying part of a file that I am modifying?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
disadvantages of realloc ?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is the difference between ‘g’ and “g” in C?
What is the difference between struct and typedef struct in c?
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
How can you check to see whether a symbol is defined?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none