Why do we use main function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
any string of bits of length 'n' represents a unique non- negative integer between.............?
Tell us the use of fflush() function in c language?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
What are the complete rules for header file searching?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
What does volatile do?
What is file in c preprocessor?
Write a program to print "hello world" without using a semicolon?
The difference between printf and fprintf is ?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
how to print the character with maximum occurence and print that number of occurence too in a string given ?