How do you initialize pointer variables?
What is #define used for in c?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Can a file other than a .h file be included with #include?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Eight queens puzzle
What is the right type to use for boolean values in c?
What is masking?
What is the benefit of using an enum rather than a #define constant?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
If the static variable is declared as global, will it be same as extern?
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?