What is the newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
What is the significance of c program algorithms?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
what is difference between strcmp & palindrome?
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.
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
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
What does. int *x[](); means ?
What is data types?
What is the use of printf() and scanf() functions?
Will Macros support multiple arguments ?
what is the syallabus of computer science students in group- 1?
Differentiate between ordinary variable and pointer in c.