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
Are there namespaces in c?
What does the c in ctime mean?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
How do I round numbers?
Are local variables initialized to zero by default in c?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Is c easy to learn?
Write a program to reverse a given number in c?
The difference between printf and fprintf is ?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }