how we can make 3d venturing graphics on outer interface
What is the real time usage volatile?
What is a good way to implement complex numbers in c?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
#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); }
What is else if ladder?
What is the difference b/w main() in C language and main() in C++.
The operation of a stair case switch best explains the a) or operation b) and operation c)exclusive nor operation d)exclusive or operation Which of the following is/are syntactically correct? a) for(); b) for(;); c) for(,); d) for(;;);
1 Answers HCL, Public Service Commission,
What is property type c?
What is function pointer and where we will use it
Write a program to reverse a given number in c language?
What is meant by operator precedence?
How to find a missed value, if you want to store 100 values in a 99 sized array?