What is an example of enumeration?
Answer / antony edwin
when you list all of an author's works one by one.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the output of printf("%d",(scanf("%d",10));
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What is the purpose of void pointer?
Write code for atoi(x) where x is hexadecimal string.
Is it possible to pass an entire structure to functions?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
how to write a c program to print list of fruits in alpabetical order?
What is main function in c?
In a switch statement, explain what will happen if a break statement is omitted?
List the difference between a "copy constructor" and a "assignment operator"?
How can I recover the file name given an open stream?
Write a program to print all permutations of a given string.