What is use of pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
how can write all 1to 100 prime numbers using for loop,if and break ?
Is a house a mass structure?
what defference between c and c++ ?
Why c language is called c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
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 are the various topologies? Which one is the most secure?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
#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); }
Define and explain about ! Operator?
What is new line escape sequence?