Why is c so powerful?
write a c program to print "Welcome" without using semicolon in the whole program ??
How do you declare a variable that will hold string values?
How do I declare a pointer to an array?
Explain how can you be sure that a program follows the ansi c standard?
What are the advantages of c preprocessor?
what is the stackpointer
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How is pointer initialized in c?
What are the different types of pointers used in c language?