Describe wild pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
IS Doon college of Engn.. has good faculty
#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 is a program flowchart and explain how does it help in writing a program?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is array within structure?
can you change name of main()?how?
Why dont c comments nest?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
How to get string length of given string in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
how to set Nth bit of variable by using MACRO