what is event driven software and what is procedural driven
software?
write a program to concatenation the string using switch case?
What does the function toupper() do?
What is main function in c?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
In a switch statement, explain what will happen if a break statement is omitted?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
suppose there are five integers write a program to find larger among them without using if- else
How can variables be characterized?
what are the advantages of a macro over a function?
Differentiate between null and void pointers.
how to write palindrome program?
Is main is a keyword in c?