How is a macro different from a function?
No Answer is Posted For this Question
Be the First to Post Answer
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
What is identifier in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is advantage of pointer in c?
Magic square
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
write a c program that prints all multiples of 3between 1 and 50.
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Explain what is the most efficient way to store flag values?
What is table lookup in c?
How can a process change an environment variable in its caller?
What is NULL pointer?