|
Related Questions |
View Answer |
|
How to write functions in c program without using headerfile.
|
View Answer
|
|
How abstraction done in C?
|
View Answer
|
|
How to do a simple program simulation of a Rotation game? A player chooses to move a box encompassing four numbers, and then chooses to either rotate the numbers clockwise or counterclockwise.
|
View Answer
|
|
How can numbers be separated by comma in C?(1200 - 1,200) The number can be up to 9 digits.
|
View Answer
|
|
I WANT DISPLAY
1111 1222 1233 1234
SEND ME ANS PLZZZZZZZ
|
View Answer
|
|
What is the output of the following program: Int x = 3, y = 2; foo(x, y) { x = x + 2; y = y + 3; printf (“%d %d”, x,y); } main0 { int x,y; x = 5; y = 5; printf (“%d %d”, x,y); } a) 7 8 5 5 b) 5 5 5 5 c) 5 5 3 2 d) 7 8 7 8
|
View Answer
|
|
Write character a to z in random seqence in one dimensional array then how to get 'ABC' and then directly get the 'PQR' ?
|
View Answer
|
|
A lift can accept a maximum load of 1000 kg.write a program to check how many people enter lift & what is the total weight currently present in the lift? If it exceeds maximum limit,set a variable for overweight.if overweight variable is set ring alarm.
|
View Answer
|
|
What are the standard predefined macros ?
|
View Answer
|
|
What is the purpose of realloc( ) ?
|
View Answer
|
|
How can you restore a redirected standard stream ?
|
View Answer
|
|
What is Preprocessor ?
|
View Answer
|
|
Can a file other than a .h file be included with #include ?
|
View Answer
|
|
Can a file other than a .h file be included with #include ?
|
View Answer
|
|
How do you print an address ?
|
View Answer
|
|
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
|
View Answer
|
|
When should a type cast be used ?
|
View Answer
|
|
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
|
View Answer
|
|
How can do search for data in a linked list ?
|
View Answer
|
|
When does the compiler not implicitly generate the address of the first element of an array ?
|
View Answer
|