How do you define a string?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in C to convert date displayed in gregorian to julian date
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
write a program in c language for the multiplication of two matrices using pointers?
Can math operations be performed on a void pointer?
What are the types of assignment statements?
What is the difference between procedural and functional programming?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
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 routine that prints out a 2-D array in spiral order!
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language