c language interview questions & answer
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
What will happen when freeing memory twice
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
write an interactive program to generate the divisors of a given integer.
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
What does s c mean on snapchat?
Find MAXIMUM of three distinct integers using a single C statement
how can i get this by using for loop? * ** * **** * ******
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is the purpose of void in c?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
declare afunction pointer to int printf(char *)?