Why are all header files not declared in every c program?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between i++ and i+1 ?(in terms of memory)
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are the different types of pointers used in c language?
Describe the modifier in c?
Find greatest number out of 10 number without using loop.
How do you list files in a directory?
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
Write a program in c to replace any vowel in a string with z?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
Example of friendly function in c++
What is the difference between struct and typedef struct in c?
Can you return null in c?