The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { int a[10]; printf("%d",*a+1-*a+3); }

2 Answers  


A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(

0 Answers  


Is c dynamically typed?

0 Answers  


why do we use pointer instead directly acessing the data?

2 Answers  


what is the difference between strcpy() and memcpy() function?

2 Answers  


What is the real time usage volatile?

2 Answers   Polycom,


how many keywords do C compile?

7 Answers   Microsoft, Practical Viva Questions,


Are negative numbers true in c?

0 Answers  


which do you prefer C or Pascal?

1 Answers  


Why do we need functions in c?

0 Answers  


n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }

7 Answers   Wipro,


using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

0 Answers  


Categories