What are different storage class specifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
Code for calculating square root without using library function, of math.h
What is optimization in c?
What are void pointers in c?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
How to receive strings with spaces in scanf()
How can you allocate arrays or structures bigger than 64K?
Explain the difference between strcpy() and memcpy() function?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
What is %g in c?