Is c compiled or interpreted?
Is c dynamically typed?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is printf () in c?
Which driver is a pure java driver
What is an example of enumeration?
what are the uses of structure?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What are Macros? What are its advantages and disadvantages?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
what do the 'c' and 'v' in argc and argv stand for?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is the difference between constant pointer and pointer to a constant. Give examples.