prog for 1st five prime numbers in 2^x - 1
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I convert a string to a number?
Two's compliment of -5
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
convert 12345 to 54321 withoutusing strig
How can I generate floating-point random numbers?
What is advantage of pointer in c?
what is a non volatile key word in c language?
How to implement call back functions ?
Are the variables argc and argv are always local to main?
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
What does return 1 means in c?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }