How to find the usage of memory in a c program
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
Write a program to print factorial of given number using recursion?
Explain how can a program be made to print the name of a source file where an error occurs?
What are actual arguments?
What’s a signal? Explain what do I use signals for?
What is the right type to use for boolean values in c? Is there a standard type?
How can you access memory located at a certain address?
Can you subtract pointers from each other? Why would you?
Tell me with an example the self-referential structure?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
How many types of arrays are there in c?