What are header files and explain what are its uses in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What does nil mean in c?
Write a program in c to replace any vowel in a string with z?
what is the defrenece between structure and union
What is variable in c with example?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
how is the examination pattern?
Prove or disprove P!=NP.
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
Juxtapose the use of override with new. What is shadowing?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?