What is linear search?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print infinte number
How to write a multi-statement macro?
What is the difference between the local variable and global variable in c?
How many identifiers are there in c?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
What is #include cctype?
Explain how can I pad a string to a known length?
how to swap 2 numbers within a single statement?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What should not contain a header file?
Explain how do you sort filenames in a directory?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?