What is #define?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between functions getch() and getche()?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
why program counter is 16 bit?
what is the difference between structural,object based,object orientd programming languages?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
What's the difference between a linked list and an array?
Write a program to implement queue.
What is the difference between exit() and _exit() function in c?
Where we use clrscr in c?