What is the difference between declaring a variable by constant keyword and #define ing that variable?
1 3378write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
HCL,
2 11060Write 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...
2307Want 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
What is a pointer value and address in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is difference between Structure and Unions?
What is quick sort in c?
Differentiate between #include<...> and #include '...'
Write a program to print fibonacci series using recursion?
Difference between pass by reference and pass by value?
i want to know the procedure of qualcomm for getting a job through offcampus
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is the scope of local variable in c?
How will you delete a node in DLL?
Describe the header file and its usage in c programming?
show how link list can be used to repersent the following polynomial i) 5x+2
When is a “switch” statement preferable over an “if” statement?
What is the difference between ++a and a++?