What is the difference between declaring a variable by constant keyword and #define ing that variable?
1 3439write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
HCL,
2 11157Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
1 8143how to execute a program using if else condition and the output should enter number and the number is odd only...
2370Want 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.
2096
What is the difference between fread buffer() and fwrite buffer()?
What are the storage classes in C?
What functions are used in dynamic memory allocation in c?
Explain pointers in c programming?
Explain about block scope in c?
What is the difference between the expression “++a” and “a++”?
Can an array be an Ivalue?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
in iso what are the common technological language?
Explain how are 16- and 32-bit numbers stored?
How can I get random integers in a certain range?
What is the right type to use for boolean values in c? Is there a standard type?
Write a program to find factorial of a number using recursive function.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?