#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}
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!!!)
Is c high or low level?
Why shouldn’t I start variable names with underscores?
Explain how can you determine the size of an allocated portion of memory?
What are the differences between new and malloc in C?
without using arithmatic operator solve which number is greater??????????
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Juxtapose the use of override with new. What is shadowing?
What is the importance of c in your views?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
Why pointers are used in c?
how to sort two array of characters and make a new array of characters.