Why is void main used?
No Answer is Posted For this Question
Be the First to Post Answer
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
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Why do we write return 0 in c?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Write a code to generate divisors of an integer?
What is file in c language?
Describe advantages and disadvantages of the various stock sorting algorithms
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
How many types of errors are there in c language? Explain
What extern c means?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }