Answer Posted / penny
acd*b+e-/
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What does #pragma once mean?
Is null always defined as 0(zero)?
Why ca not I do something like this?
Why c is called free form language?
What are variables and it what way is it different from constants?
When c language was developed?
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
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are qualifiers?
What is wrong with this program statement? void = 10;
What are global variables?
What is the difference between fread and fwrite function?
What is the difference between a string and an array?