What is function prototype?
No Answer is Posted For this Question
Be the First to Post Answer
Give a method to count the number of ones in a 32 bit number?
Can we include one C program into another C program if yes how?
What is the difference between far and near ?
pierrot's divisor program using c or c++ code
i want to know the procedure of qualcomm for getting a job through offcampus
#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); }
differentiate built-in functions and user – defined functions.
Can you explain the four storage classes in C?
What is the general form of function in c?
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 do you mean by inline function in C?
What is use of integral promotions in c?