What is function in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
What compilation do?
7 Answers Geometric Software, Infosys,
Explain how to reverse singly link list.
What is a protocol in c?
What is huge pointer in c?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Is linux written in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
how can we Declare a variable in c without defining it.
What is the explanation for modular programming?
How to delete a node from linked list w/o using collectons?