What are reserved words with a programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Can you please explain the difference between strcpy() and memcpy() function?
Explain what is meant by 'bit masking'?
Who is invented by c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Explain Function Pointer?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Write a simple code fragment that will check if a number is positive or negative.
What does *p++ do?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
What is the difference between void main() and int main()?
What is a void pointer in c?