Define circular linked list.
No Answer is Posted For this Question
Be the First to Post Answer
Give the rules for variable declaration?
what is the advantage of software development
Explain what does a function declared as pascal do differently?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
How is a pointer variable declared?
what is the role you expect in software industry?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What are the advantages of using macro in c language?
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
Stimulate calculator using Switch-case-default statement for two numbers
How does C++ help with the tradeoff of safety vs. usability?