How do you access command-line arguments?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What is the ANSI C Standard?
How can I find out the size of a file, prior to reading it in?
Write a program to print numbers from 1 to 100 without using loop in c?
why wipro wase
What is difference between stdio h and conio h?
which of 'arrays' or 'pointers' are faster?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What happens if you free a pointer twice?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
Here is a good puzzle: how do you write a program which produces its own source code as output?