What is a protocol in c?
No Answer is Posted For this Question
Be the First to Post Answer
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
write a program of bubble sort using pointer?
what is const volatile?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is C++
Explain what are run-time errors?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is c system32 taskhostw exe?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
what are the stoge class in C and tel the scope and life time of it?
Explain how does flowchart help in writing a program?