If I have a char * variable pointing to the name of a function ..
What does %c mean in c?
Write a program in c to input a 5 digit number and print it in words.
What are the valid places to have keyword “break”?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What are categories used for in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is realloc in c?
why we wont use '&' sing in aceesing the string using scanf
Describe advantages and disadvantages of the various stock sorting algorithms
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }