What is a pragma?
No Answer is Posted For this Question
Be the First to Post Answer
Can you subtract pointers from each other? Why would you?
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
read an array and search an element
What does d mean?
What is static identifier?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
In a header file whether functions are declared or defined?
What is a program?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is a function in c?