Answer Posted / p.ramya teja
Dennis Riche
| Is This Answer Correct ? | 52 Yes | 4 No |
Post New Answer View All Answers
explain what are actual arguments?
What are global variables and how do you declare them?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is a function simple definition?
How many keywords are there in c?
What is uint8 in c?
how logic is used
How many identifiers are there in c?
Write a program on swapping (100, 50)
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is s or c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is sorting in c plus plus?