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
Can we use visual studio for c?
How do shell structures work?
Explain the advantages and disadvantages of macros.
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
List some basic data types in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What does struct node * mean?
please send me the code for multiplying sparse matrix using c
can any one tel me wt is the question pattern for NIC exam
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is typeof in c?
What is else if ladder?
how to make a scientific calculater ?