In a switch statement, explain what will happen if a break statement is omitted?
No Answer is Posted For this Question
Be the First to Post Answer
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
Explain how do you use a pointer to a function?
what is the use of #pragma pack, wer it is used?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
What is function pointer c?
code for concatination of 2 strings with out using library functions?
What are the functions to open and close the file in c language?
a c code by using memory allocation for add ,multiply of sprase matrixes
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
How does #define work?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
How to print "Hi World" without using semi colon?