What is null character in c?
code for quick sort?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
which of 'arrays' or 'pointers' are faster?
what is pointer ?
10 Answers Kernex Micro Systems,
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Why is sizeof () an operator and not a function?
Here is a good puzzle: how do you write a program which produces its own source code as output?
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
What are external variables in c?