Which is better pointer or array?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
What is macro?
Explain the priority queues?
Did c have any year 2000 problems?
wap in c to accept n number display the highest and lowest value
Difference between constant pointer and pointer to a constant.
What are the types of i/o functions?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
How the C program can be compiled?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
program to find the second largest word in a paragraph amongst all words that repeat more thn twice