How do you define a string?
No Answer is Posted For this Question
Be the First to Post Answer
What is an volatile variable?
who will call your main function in c under linux?
Explain how are 16- and 32-bit numbers stored?
write a c program for greatest of three numbers without using if statment
How the processor registers can be used in C ?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What is scope rule in c?
What does 4d mean in c?
Explain what is meant by high-order and low-order bytes?
Write a program that receives as input a number omaadel-n-print, four digits.
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?