How many header files are in c?
No Answer is Posted For this Question
Be the First to Post Answer
Find greatest of two numbers using macro
What are the advantages of using macro in c language?
What are lookup tables in c?
Tell me the use of bit field in c language?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
Explain how many levels deep can include files be nested?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
write a program to print sum of each row of a 2D array.
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
write a program without using main function?
What is the purpose of sprintf() function?