what is the role you expect in software industry?
No Answer is Posted For this Question
Be the First to Post Answer
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
I have a varargs function which accepts a float parameter?
What is stack in c?
What is assert and when would I use it?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
What are the advantage of c language?
What is the argument of a function in c?
Write a C program that reads a series of strings and prints only those ending in "ed"
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
How to explain the final year project as a fresher please answer with sample project