for questions 14,15,16,17 use the following
alternatives:a.int b.char.c.string.d.float
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Why is structure important for a child?
code for find determinent of amatrix
How can I find the modification date of a file?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
write a C program to print the program itself ?!
What is a memory leak in structures? How can we rectify that?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is the process to generate random numbers in c programming language?
Why is main function so important?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }