Software Interview Questions
Answer / venkamma
better to see preves papers avalabule respected compines
Is This Answer Correct ? | 1 Yes | 1 No |
what is the full form of c language
The program to allow the characters from the input received and send this function to a function check if the characters between letters a to z is a function of y joins as the characters main and output to otherwise return to the original function of the y characters
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
List the difference between a While & Do While loops?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
How does C++ help with the tradeoff of safety vs. usability?
Are the outer parentheses in return statements really optional?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Explain what is the benefit of using enum to declare a constant?
Do pointers take up memory?
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
What is switch in c?