What is getch?
No Answer is Posted For this Question
Be the First to Post Answer
what is use of loop?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
What is double pointer in c?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
What are the two types of functions in c?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What is the difference between array and pointer?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Write a function that will take in a phone number and output all possible alphabetical combinations
which types of data structure will i use to convert infix to post fix???
How does #define work?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }