What is break statement?
No Answer is Posted For this Question
Be the First to Post Answer
What's wrong with "char *p = malloc(10);" ?
what is the use of call back function in c?tell me with example
What is the difference between strcpy() and memcpy() function in c programming?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (“%d\n”,j); }
why do we use pointer instead directly acessing the data?
What do mean by network ?
How can I access a memory located at certain address?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
Explain the differences between public, protected, private and internal.
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What does c value mean?
Write a program to print "hello world" without using a semicolon?