What is printf () in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
What is the difference between mpi and openmp?
Can a void pointer point to a function?
what is meant by c
What is I ++ in c programming?
Difference between constant pointer and pointer to a constant.
Why ca not I do something like this?
can we print any string without using terminator?
how do we remove the printed character in printf statement and write next it it
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above