Explain about C function prototype?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a code for reverse of string without using string functions?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
Write a simple program to find the size of different basic data types in C.
Why doesn't the code "a[i] = i++;" work?
what is software?
Explain what is meant by high-order and low-order bytes?
Which sorting algorithm is the best?
What are compound statements?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
what is the difference between c and c++?
What is function definition in c?