what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
TCS,
4 6798Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
2234Write a program that takes a 5 digit number and calculates 2 power that number and prints it
ABS, Accenture, HCL, Infosys, Infotech, SoftSolve, Software India, TCS, Vertex, Vimukti Technologies,
5 16078#include
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
2 5598
Are the outer parentheses in return statements really optional?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is pointer and structure 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.
What are the disadvantages of external storage class?
What are the types of macro formats?
Write a program on swapping (100, 50)
Is c easier than java?
What is extern storage class in c?
Why do we use & in c?
What is use of bit field?
What is main () in c?
Why clrscr is used in c?
What is s or c?