any "C" function by default returns an
a) int value
b) float value
c) char value
d) a & b
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print %d ?
What’s a signal? Explain what do I use signals for?
What is the difference between typedef struct and struct?
How can I write a function that takes a format string and a variable number of arguments?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what are the different storage classes in c?
Write a progarm to find the length of string using switch case?
Explain how can you be sure that a program follows the ansi c standard?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Why can’t constant values be used to define an array’s initial size?
What is the difference between the local variable and global variable in c?