Is main() function predfined or userdefined?
Answers were Sorted based on User's Feedback
main() is a predefined function because compiler starts
executing only in main() function. It better to press F7
function key after compiling your program because the
control first passes only to main() function
| Is This Answer Correct ? | 0 Yes | 7 No |
Explain what is a stream?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
How do you print an address?
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Explain how do you print only part of a string?
How do you print only part of a string?
write a program to concatenation the string using switch case?
What does 3 mean in texting?
What will happen when freeing memory twice
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?