Can include files be nested? How many levels deep can include files be nested?
No Answer is Posted For this Question
Be the First to Post Answer
difference between the array and linked list general difference related to memory
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
What is the correct declaration of main?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
What is key word in c language?
Why do we use main function?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
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?
What is the benefit of using const for declaring constants?
write a program to delete an item from a particular location of an linear array?
write a own function for strstr
How to write a program for swapping two strings without using 3rd variable and without using string functions.