What the advantages of using Unions?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
can any one tel me wt is the question pattern for NIC exam
what is the difference between char * const and const char *?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is null in c?
How to reverse a string using a recursive function, with swapping?
what is real time system?what is the differance between hard and soft real time systems
write a program to remove occurrences the word from entered text?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
How do we make a global variable accessible across files? Explain the extern keyword?