my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
1644#include
What are comments and how do you insert it in a C program?
What is s in c?
What is the benefit of using #define to declare a constant?
What does void main return?
Tell us two differences between new () and malloc ()?
Explain what is the most efficient way to store flag values?
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
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What are the loops in c?
When we use void main and int main?
What’s a signal? Explain what do I use signals for?
How do I create a directory? How do I remove a directory (and its contents)?
Differentiate between the = symbol and == symbol?
What does %c do in c?
Explain about the functions strcat() and strcmp()?