In which layer of the network datastructure format change is done
No Answer is Posted For this Question
Be the First to Post Answer
main() { clrscr(); } clrscr();
What are register variables? What are the advantage of using register variables?
How can you determine the size of an allocated portion of memory?
#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?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
related to rdbms query .
what is different between auto and local static? why should we use local static?
What is data structure in c programming?
Can you please explain the difference between malloc() and calloc() function?
Explain spaghetti programming?
How does variable declaration affect memory?
Write programs for String Reversal & Palindrome check