What is the value of a[3] if integer a[] = {5,4,3,2,1}?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
what is the diference between pointer to the function and function to the pointer?
What language is lisp written in?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Write a program to print numbers from 1 to 100 without using loop in c?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Can we initialize extern variable in c?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
Is swift based on c?
what is the stackpointer
Explain what is a static function?