What is difference between union All statement and Union?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
what is the use of #pragma pack, wer it is used?
how can we print hellow world programme without using semicolon
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
Who had beaten up hooligan "CHAKULI" in his early college days?
What is static function in c?
What is the description for syntax errors?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How does memset() work in C?
Subtract Two Number Without Using Subtraction Operator