/*what is the output for the code*/
void main()
{
int r;
r=printf("naveen");
r=printf();
printf("%d",r);
getch();
}
Answer / amegha
r=printf() sttmnt will produce an error as - too few
parameters in printf().
It needs any argument value.
r=printf("naveen") returns the no of characters printed.
here 6.
| Is This Answer Correct ? | 3 Yes | 0 No |
why wipro wase
What is a file descriptor in c?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Disadvantages of C language.
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
WHAT IS LOW LEVEL LANGUAGE?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is strcpy() function?
Explain the concept of "dangling pointers" in C.
What is the significance of an algorithm to C programming?
What are structure types in C?