What does the c preprocessor do?
No Answer is Posted For this Question
Be the First to Post Answer
what do the 'c' and 'v' in argc and argv stand for?
Which is better malloc or calloc?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
What are the advantages and disadvantages of c language?
what is the use of ‘auto’ keyword?
Find the highest of three numbers and print them using ascending orders?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
every function has return the value?
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
can u give me the good and very optimised code for a car racing game?