What are # preprocessor operator in c?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
#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
Why is not a pointer null after calling free?
Difference between exit() and _exit() function?
wite a programme in c to linear search a data using flag and without using flags?
what is difference between procedural language and functional language ?
Why we not create function inside function.
what is self refrential structure
What is pragma c?
Explain how can you determine the size of an allocated portion of memory?
what is the associativity of bitwise OR operator?
How can I manipulate strings of multibyte characters?