Find MAXIMUM of three distinct integers using a single C statement
Which one would you prefer - a macro or a function?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Write a C program that reads a series of strings and prints only those ending in "ed"
What are pointers? What are different types of pointers?
Can the “if” function be used in comparing strings?
What is the difference between array and pointer?
How do shell structures work?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
which of 'arrays' or 'pointers' are faster?
What will happen when freeing memory twice
What is multidimensional arrays