printf("%d",(printf("Hello")); What it returns?
Answer Posted / rajesh
0
| Is This Answer Correct ? | 9 Yes | 62 No |
Post New Answer View All Answers
Describe newline escape sequence with a sample program?
What is the value of h?
What are the two types of structure?
Can variables be declared anywhere in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How to find a missed value, if you want to store 100 values in a 99 sized array?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are actual arguments?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Tell me what are bitwise shift operators?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Write a program to print numbers from 1 to 100 without using loop in c?
Write program to remove duplicate in an array?
What is the use of ?: Operator?