What is preprocessor with example?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to arrange the contents of a 1D array in ascending order
What is identifier in c?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Write a program to reverse a given number in c?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What does %d do?
What is I ++ in c programming?
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
find largest element in array w/o using sorting techniques.
Explain about the constants which help in debugging?
What are the types of arrays in c?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.