write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / sagar
try your self to run the above program then it wouldn't
display but then press (alt+F5) then u would get the
correct display
and....
its not possible with while loop ....
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
What does %c do in c?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
any "C" function by default returns an a) int value b) float value c) char value d) a & b
please give me some tips for the placement in the TCS.
When should volatile modifier be used?
What is the c value paradox and how is it explained?
What are the types of functions in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is the Purpose of 'extern' keyword in a function declaration?
What does 1f stand for?
What are pointers?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the value of h?
Explain c preprocessor?
State two uses of pointers in C?