How can I implement a delay, or time a users response, with sub-second resolution?
No Answer is Posted For this Question
Be the First to Post Answer
to convert a string without using decrement operater and string functions
How to throw some light on the b tree?
What is substring in c?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
How will you allocate memory to a double pointer ?
Can 'this' pointer by used in the constructor?
What is logical error?
How can you pass an array to a function by value?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What is the use of #include in c?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none