What is the use of function overloading in C?
No Answer is Posted For this Question
Be the First to Post Answer
What are the valid places to have keyword “break”?
c programming of binary addition of two binary numbers
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
Why is sprintf unsafe?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
in linking some of os executables are linking name some of them
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
Explain what are reserved words?