Write a program to check whether a number is prime or not using c?
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
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
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
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
why we are using float in C
What does != Mean in c?
what is c language.
What is the difference between the expression “++a” and “a++”?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Explain bit masking in c?
What is volatile variable in c with example?
Explain what are the different data types in c?