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 get this by using for loop? * ** * **** * ******
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
Is that possible to add pointers to each other?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
Does c have class?
How do we make a global variable accessible across files? Explain the extern keyword?
What is static and auto variables in c?
What do you mean by c what are the main characteristics of c language?
What is the return type of sizeof?
What is the general form of #line preprocessor?
What is s or c?
How would you write qsort?