What is the difference between declaring a variable by constant keyword and #define ing that variable?
1 3373write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
HCL,
2 11059Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
1 8050how to execute a program using if else condition and the output should enter number and the number is odd only...
2303Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
2060
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Which one would you prefer - a macro or a function?
What is indirection? How many levels of pointers can you have?
What is a const pointer?
What are identifiers and keywords in c?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Write a program to print numbers from 1 to 100 without using loop in c?
Why do we use header files in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What are run-time errors?
Explain how can I prevent another program from modifying part of a file that I am modifying?
How can you increase the size of a statically allocated array?
What is the use of function in c?
List the variables are used for writing doubly linked list program.
What does *p++ do? What does it point to?