printf("%d",(printf("Hello")); What it returns?
Answer Posted / dinesh gupta
error
bcos one bracket is missing
if make correction
then out put is ........ hello5
reason..inner statement print hello and as wellas returns the lenth of the string to outer print statement,which give 5
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is putchar() function?
How many loops are there in c?
How do you list a file’s date and time?
Why main function is special give two reasons?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is getch c?
What is the ANSI C Standard?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is the Purpose of 'extern' keyword in a function declaration?
Write a program to print all permutations of a given string.
Explain a file operation in C with an example.
I have a varargs function which accepts a float parameter?
Can static variables be declared in a header file?
Explain the difference between the local variable and global variable in c?