The % symbol has a special use in a printf statement. 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
How can I delete a file?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
What is a function in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is the translation phases used in c language?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
Write a program to show the change in position of a cursor using c
Can we declare variable anywhere in c?
how we can say java is platform independent, while we require JVM for that particular Operating System?
wat is the meaning of c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these