any string of bits of length 'n' represents a unique non-
negative integer between.............?
Answers were Sorted based on User's Feedback
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
write a program to generate 1st n fibonacci prime number
Is c is a low level language?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
What is the difference between GETS();AND SCANF();
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
without using arithmatic operator solve which number is greater??????????