How to implement a packet in C
No Answer is Posted For this Question
Be the First to Post Answer
What happens if a header file is included twice?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
writw a program to insert an element in the begning of a doubly linked list
If the static variable is declared as global, will it be same as extern?
Why doesn't the code "a[i] = i++;" work?
What is define c?
What are different types of operators?
Explain what is a static function?
What is a void pointer? When is a void pointer used?
Write a code to generate divisors of an integer?