What is console in c language?
No Answer is Posted For this Question
Be the First to Post Answer
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
In a switch statement, what will happen if a break statement is omitted?
Write a C program in Fibonacci series.
What are operators in c?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
How can I do serial ("comm") port I/O?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
How is a null pointer different from a dangling pointer?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
What is the purpose of Scanf Print, getchar, putchar, function?
write a program to create a sparse matrix using dynamic memory allocation.