What does the && operator do in a program code?
No Answer is Posted For this Question
Be the First to Post Answer
which of 'arrays' or 'pointers' are faster?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Why is structure padding done in c?
I need previous papers of CSC.......plz help out by posting them.......
What is the purpose of Scanf Print, getchar, putchar, function?
What are pointers? Why are they used?
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(); }
Tell us something about keyword 'auto'.
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
Write a C program to find the smallest of three integers, without using any of the comparision operators.