what is diffrence between linear and binary search in array
respect to operators?what kind of operator can be used in
both seach methods?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of macro in C language?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
What are the 4 types of unions?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What is the difference between a function and a method in c?
When should the const modifier be used?
What is scope and lifetime of a variable in c?
Explain what is a stream?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
i have a written test in tomorrow
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers