How to implement a packet in C


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is string function c?

0 Answers  


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


How to write a code for reverse of string without using string functions?

0 Answers   TCS,


#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


What is a Deque?

2 Answers  


Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.

12 Answers   MIT, TCS,


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

0 Answers  


What is a C array and illustrate the how is it different from a list.

1 Answers   Amazon,


What are the parts of c program?

0 Answers  


How do I convert a string to all upper or lower case?

0 Answers  


What does 3 periods mean in texting?

0 Answers  


Categories